wedding-planner/db/migrate/20241207112305_remove_wedding_date.rb

10 lines
231 B
Ruby
Raw Permalink Normal View History

2025-01-13 20:38:47 +00:00
# Copyright (C) 2024 Manuel Bustillo
# Copyright (C) 2024-2025 LibreWeddingPlanner contributors
2024-12-07 18:09:21 +00:00
2024-12-07 12:39:43 +01:00
class RemoveWeddingDate < ActiveRecord::Migration[8.0]
def change
remove_column :weddings, :date, :date, null: false
end
end