Files
old-zsterminator/db/migrate/20240518200749_create_companies.rb
2024-08-04 07:06:03 +02:00

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