mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 15:16:03 +01:00
5 lines
140 B
Ruby
5 lines
140 B
Ruby
class AddAdminToUsers < ActiveRecord::Migration
|
|
def change
|
|
add_column :users, :admin, :boolean, default: false, null: false
|
|
end
|
|
end
|