Use sentry for error processing
This commit is contained in:
parent
9f07e3556d
commit
31f68329b3
|
@ -1,4 +0,0 @@
|
||||||
class Container < ActiveRecord::Base
|
|
||||||
belongs_to :platform
|
|
||||||
has_many :build_lists
|
|
||||||
end
|
|
|
@ -1,10 +0,0 @@
|
||||||
class CreateContainers < ActiveRecord::Migration
|
|
||||||
def change
|
|
||||||
create_table :containers do |t|
|
|
||||||
t.string :name
|
|
||||||
t.references :platform, index: true, foreign_key: true
|
|
||||||
|
|
||||||
t.timestamps null: false
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -1,5 +0,0 @@
|
||||||
class AddContainerToBuildLists < ActiveRecord::Migration
|
|
||||||
def change
|
|
||||||
add_reference :build_lists, :container, index: true, foreign_key: true
|
|
||||||
end
|
|
||||||
end
|
|
|
@ -1,5 +0,0 @@
|
||||||
require 'rails_helper'
|
|
||||||
|
|
||||||
RSpec.describe Container, type: :model do
|
|
||||||
pending "add some examples to (or delete) #{__FILE__}"
|
|
||||||
end
|
|
Loading…
Reference in New Issue