8 lines
190 B
Ruby
8 lines
190 B
Ruby
|
class RemoveNotificationLevelFromUsers < ActiveRecord::Migration
|
||
|
include Gitlab::Database::MigrationHelpers
|
||
|
|
||
|
def change
|
||
|
remove_column :users, :notification_level, :integer
|
||
|
end
|
||
|
end
|