2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
class CreatePostActions < ActiveRecord::Migration[4.2]
|
2013-02-05 14:16:51 -05:00
|
|
|
def up
|
|
|
|
create_table :post_actions do |t|
|
|
|
|
t.integer :post_id, null: false
|
|
|
|
t.integer :user_id, null: false
|
|
|
|
t.integer :post_action_type_id, null: false
|
|
|
|
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"
|
|
|
|
end
|
|
|
|
def down
|
|
|
|
drop_table :post_actions
|
|
|
|
end
|
|
|
|
end
|