12 lines
219 B
Ruby
12 lines
219 B
Ruby
|
class CreateUserActions < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table :user_actions do |t|
|
||
|
t.integer :user_id
|
||
|
t.string :action_type
|
||
|
t.integer :action_id
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|