discourse/db/migrate/20160905091958_create_join_table_web_hooks_groups.rb
2016-09-05 18:44:00 +08:00

6 lines
200 B
Ruby

class CreateJoinTableWebHooksGroups < ActiveRecord::Migration
def change
create_join_table :web_hooks, :groups
add_index :groups_web_hooks, [:web_hook_id, :group_id], unique: true
end
end