mirror of
https://github.com/internetee/registry.git
synced 2025-05-18 18:29:40 +02:00
7 lines
220 B
Ruby
7 lines
220 B
Ruby
class AddMoreFieldsToRegistrar < ActiveRecord::Migration
|
|
def change
|
|
add_column :registrars, :phone, :string
|
|
add_column :registrars, :email, :string
|
|
add_column :registrars, :billing_email, :string
|
|
end
|
|
end
|