Some checks failed
Run unit tests / rubocop (pull_request) Failing after 2m38s
Run unit tests / check-licenses (pull_request) Successful in 3m1s
Run unit tests / copyright_notice (pull_request) Successful in 1m55s
Run unit tests / unit_tests (pull_request) Successful in 5m25s
Run unit tests / build-static-assets (pull_request) Has been skipped
22 lines
434 B
Ruby
22 lines
434 B
Ruby
# == 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
|