mirror of
https://github.com/discourse/discourse.git
synced 2025-02-07 07:46:31 +08:00
10 lines
197 B
Ruby
10 lines
197 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
|