discourse/db/migrate/20160905091958_create_join_...

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

9 lines
235 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class CreateJoinTableWebHooksGroups < ActiveRecord::Migration[4.2]
2016-06-15 13:49:57 -04:00
def change
create_join_table :web_hooks, :groups
add_index :groups_web_hooks, %i[web_hook_id group_id], unique: true
end
end