aboutsummaryrefslogtreecommitdiff
path: root/app/models/finished_terraform_job.rb
blob: 16906266db45c177e8c913c4cebef0c880b65187 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# == Schema Information
#
# Table name: finished_terraform_jobs
#
#  id                  :integer          not null, primary key
#  mini_environment_id :integer
#  job_class           :string
#  created_at          :datetime         not null
#  updated_at          :datetime         not null
#

class FinishedTerraformJob < ApplicationRecord
  belongs_to :mini_environment
end