mirror of
https://github.com/internetee/registry.git
synced 2025-06-10 06:34:46 +02:00
11 lines
245 B
Ruby
11 lines
245 B
Ruby
class CreateBusinessRegistryContacts < ActiveRecord::Migration[6.1]
|
|
def change
|
|
create_table :business_registry_contacts do |t|
|
|
t.string :name
|
|
t.string :registry_code
|
|
t.string :status
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|