Files
fetsite/db/migrate/20130805143839_create_attachments.rb
2013-08-05 18:31:04 +02:00

10 lines
159 B
Ruby

class CreateAttachments < ActiveRecord::Migration
def change
create_table :attachments do |t|
t.string :name
t.timestamps
end
end
end