mirror of
https://github.com/discourse/discourse.git
synced 2025-03-03 17:59:20 +00:00
10 lines
193 B
Ruby
10 lines
193 B
Ruby
class TrustLevelDefaultNull < ActiveRecord::Migration
|
|
def up
|
|
change_column_default :users, :trust_level, nil
|
|
end
|
|
|
|
def down
|
|
change_column_default :users, :trust_level, 0
|
|
end
|
|
end
|