mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 03:42:16 +08: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
|