This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/db/migrate/20160905091958_create_join_table_web_hooks_groups.rb
2016-09-05 18:44:00 +08:00

7 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