mirror of
https://github.com/internetee/registry.git
synced 2025-06-10 14:44:47 +02:00
6 lines
176 B
Ruby
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
|