aboutsummaryrefslogtreecommitdiff
path: root/db/migrate/20251030014228_add_mobile_number_to_clients.rb
blob: 535fbe1dcad902b4dfd3f232f5ea5b951bcc83b3 (plain)
1
2
3
4
5
class AddMobileNumberToClients < ActiveRecord::Migration[8.1]
  def change
    add_column :clients, :mobile_number, :string, null: false
  end
end