mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:04:11 +08:00
11 lines
268 B
Ruby
11 lines
268 B
Ruby
class CreateTrustLevels < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :trust_levels do |t|
|
|
t.string :name_key, null: false
|
|
t.timestamps null: false
|
|
end
|
|
|
|
add_column :users, :trust_level_id, :integer, default: 1, null: false
|
|
end
|
|
end
|