socialforge/db/migrate/20130801081314_create_share...

13 lines
223 B
Ruby
Raw Normal View History

class CreateShares < ActiveRecord::Migration
def change
create_table :shares do |t|
2013-08-03 20:09:04 +08:00
t.date :created_on
t.string :url
t.string :title
t.integer :share_type
t.timestamps
end
end
end