0305571cb3
Fixed the build tags for the alt database engines. Tweaked the quotes on the PgSQL adapter. Still not functional. Removed the SQLite build tag as it's unlikely that it'll ever be implemented.
14 lines
422 B
SQL
14 lines
422 B
SQL
CREATE TABLE "users_2fa_keys" (
|
|
`uid` int not null,
|
|
`secret` varchar (100) not null,
|
|
`scratch1` varchar (50) not null,
|
|
`scratch2` varchar (50) not null,
|
|
`scratch3` varchar (50) not null,
|
|
`scratch4` varchar (50) not null,
|
|
`scratch5` varchar (50) not null,
|
|
`scratch6` varchar (50) not null,
|
|
`scratch7` varchar (50) not null,
|
|
`scratch8` varchar (50) not null,
|
|
`createdAt` timestamp not null,
|
|
primary key(`uid`)
|
|
); |