wedding-planner/db/migrate/20241103072808_add_name_to_tables_arrangements.rb
Manuel Bustillo 2fd4549b00
All checks were successful
Add copyright notice / copyright_notice (pull_request) Successful in 6m31s
Run unit tests / unit_tests (pull_request) Successful in 10m41s
Add copyright notice
2024-11-03 10:47:26 +00:00

8 lines
191 B
Ruby

# Copyright (C) 2024 Manuel Bustillo
class AddNameToTablesArrangements < ActiveRecord::Migration[7.2]
def change
add_column :tables_arrangements, :name, :string, null: false
end
end