mirror of
https://github.com/internetee/registry.git
synced 2025-08-01 07:26:22 +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
|