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
The groups table has a field is_public which is of type string
groups
is_public
Since all other Checkbox fields in vexim are boolean (integer in DB) i'd like to change this. Involved is one router.
The text was updated successfully, but these errors were encountered:
postgresql does not seem to have the tinyint field type ....
tinyint
https://stackoverflow.com/questions/1942586/comparison-of-database-column-types-in-mysql-postgresql-and-sqlite-cross-map
Sorry, something went wrong.
my PR is using smallint for pgsql:
smallint
"is_public" smallint NOT NULL DEFAULT '1' CHECK("enabled" BETWEEN 0 AND 1),
Since this is a cosmetic change only, but it involves the database, I would prefer to have this changed in 3.0, when we have proper migration support.
Successfully merging a pull request may close this issue.
The
groups
table has a fieldis_public
which is of type stringSince all other Checkbox fields in vexim are boolean (integer in DB) i'd like to change this.
Involved is one router.
The text was updated successfully, but these errors were encountered: