mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
feat(migrations): add upgrade_voteinfo_integers ref
This migration modifies the Yes, No, Abstain and ActiveTUs columns of the TUVoteInfo table from unsigned TINYINT to unsigned INTEGER. TINYINT supports a total of 1 byte (up to 255 trusted users). This is quite limited and we don't spend too much more by storing a standard 4-byte INTEGER. Signed-off-by: Kevin Morris <kevr@0cost.org>
This commit is contained in:
parent
6e27f62e1b
commit
b5ff8581f3
2 changed files with 53 additions and 4 deletions
|
@ -391,10 +391,10 @@ TU_VoteInfo = Table(
|
|||
if db_backend == "mysql" else String(5),
|
||||
nullable=False),
|
||||
Column('SubmitterID', ForeignKey('Users.ID', ondelete='CASCADE'), nullable=False),
|
||||
Column('Yes', TINYINT(3, unsigned=True), nullable=False, server_default=text("'0'")),
|
||||
Column('No', TINYINT(3, unsigned=True), nullable=False, server_default=text("'0'")),
|
||||
Column('Abstain', TINYINT(3, unsigned=True), nullable=False, server_default=text("'0'")),
|
||||
Column('ActiveTUs', TINYINT(3, unsigned=True), nullable=False, server_default=text("'0'")),
|
||||
Column('Yes', INTEGER(unsigned=True), nullable=False, server_default=text("'0'")),
|
||||
Column('No', INTEGER(unsigned=True), nullable=False, server_default=text("'0'")),
|
||||
Column('Abstain', INTEGER(unsigned=True), nullable=False, server_default=text("'0'")),
|
||||
Column('ActiveTUs', INTEGER(unsigned=True), nullable=False, server_default=text("'0'")),
|
||||
mysql_engine='InnoDB',
|
||||
mysql_charset='utf8mb4',
|
||||
mysql_collate='utf8mb4_general_ci',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue