mirror of
https://github.com/discourse/discourse.git
synced 2025-09-10 08:38:11 +08:00
7 lines
267 B
Ruby
7 lines
267 B
Ruby
class AddApprovedToUsers < ActiveRecord::Migration
|
|
def change
|
|
add_column :users, :approved, :boolean, null: false, default: false
|
|
add_column :users, :approved_by_id, :integer, null: true
|
|
add_column :users, :approved_at, :timestamp, null: true
|
|
end
|
|
end
|