Sha256: 547361655177d46d100c2dcc72f3a3a61c56caa659ac566fceb3accfa5fc8906
Contents?: true
Size: 305 Bytes
Versions: 61
Compression:
Stored size: 305 Bytes
Contents
class CreateAttachments < ActiveRecord::Migration def self.up create_table :attachments do |t| t.string :name t.string :filename t.string :content_type t.integer :size t.userstamps t.timestamps end end def self.down drop_table :attachments end end
Version data entries
61 entries across 61 versions & 1 rubygems