Switched from sea-orm to sqlx
This commit is contained in:
3
migrations/0001_init.down.sql
Normal file
3
migrations/0001_init.down.sql
Normal file
@ -0,0 +1,3 @@
|
||||
DROP TABLE account;
|
||||
|
||||
DROP TABLE master_pass;
|
16
migrations/0001_init.up.sql
Normal file
16
migrations/0001_init.up.sql
Normal file
@ -0,0 +1,16 @@
|
||||
CREATE TABLE
|
||||
master_pass (
|
||||
user_id BIGINT UNSIGNED NOT NULL PRIMARY KEY,
|
||||
salt BINARY(64) NOT NULL,
|
||||
password_hash BINARY(64) NOT NULL
|
||||
);
|
||||
|
||||
CREATE TABLE
|
||||
account (
|
||||
user_id BIGINT UNSIGNED NOT NULL,
|
||||
name VARCHAR(255) NOT NULL,
|
||||
salt BINARY(64) NOT NULL,
|
||||
enc_login VARBINARY(256) NOT NULL,
|
||||
enc_password VARBINARY(256) NOT NULL,
|
||||
PRIMARY KEY (user_id, name)
|
||||
);
|
Reference in New Issue
Block a user