mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
9 lines
193 B
Ruby
9 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
|