mirror of
https://github.com/Retrospring/retrospring.git
synced 2024-11-20 10:19:52 +01:00
7 lines
184 B
Ruby
7 lines
184 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddModeratorToUsers < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_column :users, :moderator, :boolean, default: false, null: false
|
|
end
|
|
end
|