discourse/db/migrate/20120809174649_create_post_actions.rb

22 lines
556 B
Ruby
Raw Normal View History

2013-02-05 13:16:51 -06: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
t.integer :post_action_type_id, null:false
t.datetime :deleted_at
t.timestamps
end
add_index :post_actions, ["post_id"]
2013-02-25 10:42:20 -06:00
2013-02-05 13:16:51 -06:00
# no support for this till rails 4
2013-02-25 10:42:20 -06:00
execute 'create unique index idx_unique_actions on
2013-02-05 13:16:51 -06:00
post_actions(user_id, post_action_type_id, post_id) where deleted_at is null'
2013-02-25 10:42:20 -06:00
2013-02-05 13:16:51 -06:00
end
def down
drop_table :post_actions
end
end