internetee-registry/db/migrate/20150514132606_add_registrant_ident_to_users.rb
2021-04-26 18:54:26 +05:00

6 lines
176 B
Ruby

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