discourse/db/migrate/20120809174649_create_post_...

22 lines
556 B
Ruby
Raw Normal View History

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
t.integer :post_action_type_id, null:false
t.datetime :deleted_at
t.timestamps
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