blob: c7f17966e9b3530990c95a1d4c41b6e3b783e298 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
class CreateAssets < ActiveRecord::Migration
def self.up
create_table :assets do |t|
t.string :name
t.string :upload_file_name
t.string :upload_content_type
t.integer :upload_file_size
t.datetime :upload_updated_at
t.timestamps
end
end
def self.down
drop_table :assets
end
end
|