Files
old-zsterminator/db/migrate/20240804060103_create_places.rb
2024-08-06 14:16:40 +02:00

11 lines
214 B
Ruby

class CreatePlaces < ActiveRecord::Migration[7.1]
def change
create_table :places do |t|
t.string :name
t.references :company, null: false, foreign_key: true
t.timestamps
end
end
end