aboutsummaryrefslogtreecommitdiff
path: root/db/migrate/20251029130829_create_visits.rb
blob: a6301e3da89bc473001512ed7f59f47498363f2c (plain)
1
2
3
4
5
6
7
8
9
class CreateVisits < ActiveRecord::Migration[8.1]
  def change
    create_table :visits do |t|
      t.references :client, null: false, foreign_key: true

      t.timestamps
    end
  end
end