debian-mirror-gitlab/db/migrate/20170816234252_add_theme_id_to_users.rb
2019-02-15 15:39:39 +05:30

11 lines
284 B
Ruby

# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
class AddThemeIdToUsers < ActiveRecord::Migration[4.2]
DOWNTIME = false
def change
add_column :users, :theme_id, :integer, limit: 2
end
end