2013-02-05 14:16:51 -05:00
|
|
|
class CreatePostActions < ActiveRecord::Migration
|
|
|
|
def up
|
|
|
|
create_table :post_actions do |t|
|
|
|
|
t.integer :post_id, null: false
|
|
|
|
t.integer :user_id, null: false
|
2017-07-27 21:20:09 -04:00
|
|
|
t.integer :post_action_type_id, null: false
|
2013-02-05 14:16:51 -05:00
|
|
|
t.datetime :deleted_at
|
2017-08-07 11:48:36 -04:00
|
|
|
t.timestamps null: false
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
add_index :post_actions, ["post_id"]
|
2013-02-25 11:42:20 -05:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
# no support for this till rails 4
|
2013-02-25 11:42:20 -05:00
|
|
|
execute 'create unique index idx_unique_actions on
|
2013-02-05 14:16:51 -05:00
|
|
|
post_actions(user_id, post_action_type_id, post_id) where deleted_at is null'
|
2013-02-25 11:42:20 -05:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
def down
|
|
|
|
drop_table :post_actions
|
|
|
|
end
|
|
|
|
end
|