aboutsummaryrefslogtreecommitdiff
path: root/db/migrate/20251030151152_add_notes_to_clients.rb
blob: 6f4768106cea57c158864eab6ecf1747e7b89f2d (plain)
1
2
3
4
5
class AddNotesToClients < ActiveRecord::Migration[8.1]
  def change
    add_column :clients, :notes, :string, null: false, default: ''
  end
end