aboutsummaryrefslogtreecommitdiff
path: root/db/migrate/20251030173042_add_address_to_clients.rb
blob: f2a5b7dcfdfc0e0f2b9196062fcda8e076c5f990 (plain)
1
2
3
4
5
class AddAddressToClients < ActiveRecord::Migration[8.1]
  def change
    add_column :clients, :address, :string
  end
end