# frozen_string_literal: true require 'model' class Stage < Model belongs_to :build has_many :jobs self.table_name = 'stages' end