18 lines
375 B
Ruby
18 lines
375 B
Ruby
|
|
class CreateCompanies < ActiveRecord::Migration[7.1]
|
||
|
|
def change
|
||
|
|
create_table :companies do |t|
|
||
|
|
t.string :name
|
||
|
|
t.string :id_number
|
||
|
|
t.string :vat_number
|
||
|
|
t.string :address_line_one
|
||
|
|
t.string :address_line_two
|
||
|
|
t.string :postal_code
|
||
|
|
t.string :city
|
||
|
|
t.string :entity
|
||
|
|
t.string :country
|
||
|
|
|
||
|
|
t.timestamps
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|