# frozen_string_literal: true
class Course < ApplicationRecord
has_many :weeks, dependent: :destroy
validates :name, presence: true
end