gitlab-org--gitlab-foss/db/post_migrate/20170215200045_remove_theme...

10 lines
190 B
Ruby
Raw Normal View History

2017-02-13 17:38:53 +00:00
class RemoveThemeIdFromUsers < ActiveRecord::Migration
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
2017-02-13 17:38:53 +00:00
def change
remove_column :users, :theme_id, :integer
end
end