socialforge/db/migrate/20150906065702_create_oncli...

11 lines
197 B
Ruby
Raw Normal View History

2015-09-06 15:31:48 +08:00
class CreateOnclickTimes < ActiveRecord::Migration
def change
create_table :onclick_times do |t|
t.integer :user_id
t.datetime :onclick_time
t.timestamps
end
end
end