-
Notifications
You must be signed in to change notification settings - Fork 0
Run tests using GitHub Actions #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
25732e1
to
c6d7b82
Compare
@@ -78,7 +78,7 @@ class ContractType < ActiveRecord::Base | |||
has_many :contracts, inverse_of: :contract_type | |||
end | |||
|
|||
class Block < ApplicationRecord | |||
class Block < ActiveRecord::Base |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was getting an uninitialized constant for ApplicationRecord
so I changed this to match what all the other models do
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ope good call, the version I forked back to is targeting an older Ruby version than the PR I copied from
@@ -30,7 +30,7 @@ | |||
add_foreign_key(:tag_hierarchies, :tags, :column => 'descendant_id') | |||
|
|||
create_table "uuid_tags", :id => false do |t| | |||
t.string "uuid", :unique => true | |||
t.string "uuid" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't know why I needed to change this (or why it was valid in the first place)
tests be running... looks awesome, thank you! |
No description provided.