mirror of
https://github.com/internetee/registry.git
synced 2025-07-30 06:26:15 +02:00
8 lines
276 B
Ruby
8 lines
276 B
Ruby
class AddLegacyColumnsForRegistrar < ActiveRecord::Migration[6.0]
|
|
def change
|
|
add_column :registrars, :url, :string
|
|
add_column :registrars, :directo_handle, :string
|
|
add_column :registrars, :vat, :boolean
|
|
add_column :registrars, :legacy_id, :integer
|
|
end
|
|
end
|