internetee-registry/db/migrate/20150514132606_add_registrant_ident_to_users.rb
2015-05-15 00:08:54 +03:00

6 lines
171 B
Ruby

class AddRegistrantIdentToUsers < ActiveRecord::Migration
def change
add_column :users, :registrant_ident, :string
add_index :users, :registrant_ident
end
end