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
Is there a clean way to disable the migration railties and rake task injections?
Right now I'm resolving the symptoms by adding this line to the app's Rakefile:
Rakefile
Rake::Task["test:prepare"].prerequisites.delete("db:test:prepare")
And these lines to config/application.rb:
config/application.rb
config.sequel.schema_dump = false config.app_generators.sequel[:migration] = false
The text was updated successfully, but these errors were encountered:
There is nothing yet, but we can probably do something like for the schema_dump config and then use it to load or not the database.rake task in the Railtie: https://github.com/TalentBox/sequel-rails/blob/master/lib/sequel_rails/railtie.rb#L39-L41
schema_dump
database.rake
Would you want to try adding it?
Sorry, something went wrong.
I've created a pull-request for this issue: #42.
Can you review it and tell me if that's what you needed?
67e690b
No branches or pull requests
Is there a clean way to disable the migration railties and rake task injections?
Right now I'm resolving the symptoms by adding this line to the app's
Rakefile
:And these lines to
config/application.rb
:The text was updated successfully, but these errors were encountered: