mirror of
https://github.com/internetee/registry.git
synced 2025-07-29 14:06:21 +02:00
7 lines
225 B
Ruby
7 lines
225 B
Ruby
class AddMoreFieldsToRegistrar < ActiveRecord::Migration[6.0]
|
|
def change
|
|
add_column :registrars, :phone, :string
|
|
add_column :registrars, :email, :string
|
|
add_column :registrars, :billing_email, :string
|
|
end
|
|
end
|