aboutsummaryrefslogtreecommitdiff
path: root/db/migrate/20251029005839_create_clients.rb
blob: a6690b61165860f30e4d7b6976dde95a1e3c129a (plain)
1
2
3
4
5
6
7
8
9
10
class CreateClients < ActiveRecord::Migration[8.1]
  def change
    create_table :clients do |t|
      t.string :first_name, null: false
      t.string :last_name, null: false

      t.timestamps
    end
  end
end