forked from bofh/fetsite
10 lines
159 B
Ruby
10 lines
159 B
Ruby
class CreateAttachments < ActiveRecord::Migration
|
|
def change
|
|
create_table :attachments do |t|
|
|
t.string :name
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|