tuist/projects/cloud/app/models/s3_bucket.rb

8 lines
173 B
Ruby

# frozen_string_literal: true
class S3Bucket < ApplicationRecord
# Associations
belongs_to :account, optional: true
has_many :projects, as: :remote_cache_storage
end