wedding-planner/db/migrate/20241103072808_add_name_to_tables_arrangements.rb
Manuel Bustillo 3b0702bbec
Some checks failed
Add copyright notice / copyright_notice (pull_request) Successful in 4m53s
Run unit tests / unit_tests (pull_request) Successful in 5m57s
Build Nginx-based docker image / build-static-assets (pull_request) Failing after 1h7m33s
Add copyright notice
2024-11-03 07:47:40 +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