users table schema improvements(uses SERIAL for autoincrements)
bootstrapped for sqlx migration(migrations via diesel-cli is broken)
SQLx migration:
There are subtle differences between SQL as understood by postgres,
mysql and sqlite. For example, SERIAL(mysql and postgres) doesn't
exist in sqlite so those things will have to be accommodated.
Changes:
users
table schema improvements(usesSERIAL
for autoincrements)diesel-cli
is broken)SQLx migration:
There are subtle differences between SQL as understood by postgres, mysql and sqlite. For example,
SERIAL
(mysql and postgres) doesn't exist in sqlite so those things will have to be accommodated.