mirror of
https://github.com/internetee/registry.git
synced 2025-07-25 12:08:27 +02:00
8 lines
271 B
Ruby
8 lines
271 B
Ruby
class AddLegacyColumnsForRegistrar < ActiveRecord::Migration
|
|
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
|