We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Organization class not referencing ActiveRecord in the organization related rake tasks (e.g. db_maintenance.rake).
Organization
ActiveRecord
db_maintenance.rake
For example the rake task set_organization_quota:
set_organization_quota
cartodb/lib/tasks/db_maintenance.rake
Line 478 in f9e43b9
seems to be referencing the old Sequel models.
Sequel
I suspects it's bug introduced during the migration of Organization model to ActiveRecord #15884
requires changing all
Organization.filter
to
Carto::Organization.where
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem
Organization
class not referencingActiveRecord
in the organization related rake tasks (e.g.db_maintenance.rake
).For example the rake task
set_organization_quota
:cartodb/lib/tasks/db_maintenance.rake
Line 478 in f9e43b9
seems to be referencing the old
Sequel
models.Cause
I suspects it's bug introduced during the migration of
Organization
model to ActiveRecord #15884Possible Fix
requires changing all
to
The text was updated successfully, but these errors were encountered: