wedding-planner/db/migrate/20241103072808_add_name_to_tables_arrangements.rb
Manuel Bustillo 86e982164d
Some checks failed
Build Nginx-based docker image / build-static-assets (pull_request) Waiting to run
Run unit tests / unit_tests (pull_request) Failing after 16m52s
Add copyright notice / copyright_notice (pull_request) Failing after 17m30s
Add copyright notice
2024-11-03 08:31:58 +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