Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20130304104623_add_state_to_user.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4456d022e3f2eedc3f92f8183cd34148c65848b1 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddStateToUser < ActiveRecord::Migration
  def change
    add_column :users, :state, :string
  end
end