You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let down = Table::drop().table(RootFolderIden::Table).table(FolderIden::Table).table(FileIden::Table).build(SqliteQueryBuilder);
That generates the following sql
DROPTABLE"root_folder", "folder", "file"
Steps to Reproduce
Generate the sql from the above code snippet.
Expected Behavior
Ideally it should be the same as when creating a table. (i.e. overwrites the table name with the last one used )
Actual Behavior
DROP TABLE "root_folder", "folder", "file"
Generated a drop table statement with all the tables which isn't supported by sqlite (https://www.sqlite.org/lang_droptable.html)
Description
That generates the following sql
Steps to Reproduce
Expected Behavior
Ideally it should be the same as when creating a table. (i.e. overwrites the table name with the last one used )
Actual Behavior
DROP TABLE "root_folder", "folder", "file"
Generated a drop table statement with all the tables which isn't supported by sqlite (https://www.sqlite.org/lang_droptable.html)
Reproduces How Often
Always
Versions
Additional Information
The text was updated successfully, but these errors were encountered: