Skip to content

Commit

Permalink
Merge pull request #340 from DNO-inc/auto_increment_fix
Browse files Browse the repository at this point in the history
Add default value of AUTO_INCREMENT for "users" table
  • Loading branch information
m-o-d-e-r authored Apr 28, 2024
2 parents f5ffc84 + 1f78ca7 commit 8e9cc70
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions burrito/models/user_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,6 @@ class Users(BurritoBasicModel):

class Meta:
depends_on = [Roles, Groups, Faculties]
table_settings = [
"AUTO_INCREMENT = 1073741824"
]

0 comments on commit 8e9cc70

Please sign in to comment.