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
currently available for SQL Models to use SQL refelction: see here
_use_pow_schema_attrs = False
The text was updated successfully, but these errors were encountered:
Something like:
if getattr(self.__class__,'_use_pow_schema_attrs', False): self.basic_schema = { "_uuid" : { "type" : "string", "default" : str(uuid.uuid4()) }, #"eid" : { "type" : "string" }, "created_at" : { "type" : "datetime" }, "last_updated" : { "type" : "datetime" }, } else: self.basic_schema = {} ## And then merge the two dicts schema & basic_schema.
Sorry, something went wrong.
pythononwheels
No branches or pull requests
currently available for SQL Models to use SQL refelction:
see here
Toggle using the pow schema extensions (id, created_at, last_updated)
_use_pow_schema_attrs = False
The text was updated successfully, but these errors were encountered: