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
hello.
For tables that have columns for logical deletion, as shown below, there is a use case where logical deletion is required.
CREATE TABLE user ( id INTEGER, name VARCHAR NOT NULL, archive_time TIMESTAMP, PRIMARY KEY (id) );
I think we need to address this. Specifically, it would take the form of adding the following attribute:
CRUDRouter( # ... logical_delete_column="archive_time", )
Thank you for your consideration.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
hello.
For tables that have columns for logical deletion, as shown below, there is a use case where logical deletion is required.
I think we need to address this.
Specifically, it would take the form of adding the following attribute:
Thank you for your consideration.
The text was updated successfully, but these errors were encountered: