class CreateUsersNotificationGroups < ActiveRecord::Migration[6.0]
  def change
    create_table :users_notification_groups do |t|
      t.integer :user_id
      t.integer :notification_group_id
    end
  end
end
