discourse/db/migrate/20120809174649_create_post_...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
604 B
Ruby
Raw Normal View History

# frozen_string_literal: true
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