debian-mirror-gitlab/db/migrate/20130304104623_add_state_to_user.rb
2016-06-16 23:09:34 +05:30

7 lines
131 B
Ruby

# rubocop:disable all
class AddStateToUser < ActiveRecord::Migration
def change
add_column :users, :state, :string
end
end