# Copyright (C) 2024-2025 LibreWeddingPlanner contributors # == Schema Information # # Table name: websites # # id :bigint not null, primary key # content :text # created_at :datetime not null # updated_at :datetime not null # wedding_id :uuid not null # # Indexes # # index_websites_on_wedding_id (wedding_id) # # Foreign Keys # # fk_rails_... (wedding_id => weddings.id) # class Website < ApplicationRecord belongs_to :wedding end