mirror of
https://github.com/discourse/discourse.git
synced 2025-02-12 18:07:30 +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
|