Files
discourse/db/migrate/20151107042241_add_owner_to_group_users.rb
T

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

8 lines
187 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddOwnerToGroupUsers < ActiveRecord::Migration[4.2]
def change
add_column :group_users, :owner, :boolean, null: false, default: false
end
end