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
views are not added into the database by diesel migration cli
diesel migration
create table service_index( ... ); CREATE VIEW services AS SELECT ip, port, identifer, is_online FROM service_data where is_online > 0;
Views do not appear to be committed during migrations when running (up.sql)
up.sql
Attempting to use "views" feature in sqlite3.
None.
It does not place view in database.
No.
Attempt to use views
create table foo( baz int primary key, yak int ); CREATE VIEW quick_foo AS SELECT yak FROM foo where yak > 0;
The text was updated successfully, but these errors were encountered:
May I ask why this issue was closed? This problem is still present today and arguably diminish the ability to interact with a database.
Sorry, something went wrong.
@3NdR1m Because it's a duplicate of #43.
No branches or pull requests
views are not added into the database by
diesel migration
cliSetup
Versions
Feature Flags
Problem Description
Views do not appear to be committed during migrations when running (
up.sql
)What are you trying to accomplish?
Attempting to use "views" feature in sqlite3.
What is the expected output?
None.
What is the actual output?
It does not place view in database.
Are you seeing any additional errors?
No.
Steps to reproduce
Attempt to use views
Checklist
closed if this is not the case)
The text was updated successfully, but these errors were encountered: