2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-10-03 17:21:20 +08:00
discourse/db/migrate/20160905091958_create_join_table_web_hooks_groups.rb
2023-01-09 11:59:41 +00:00

8 lines
235 B
Ruby

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