mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 23:06:57 +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
|