11 lines
197 B
Ruby
11 lines
197 B
Ruby
|
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
|