fix: remove discord from the signup

This commit is contained in:
silver 2023-06-04 21:47:30 +01:00
parent 5b6195db31
commit 36b13fb1f2
2 changed files with 5 additions and 10 deletions

View file

@ -15,7 +15,6 @@ pub struct AccountsPending {
name_first : String,
name_second : String,
auth_code : String,
discord: Option<String>,
// will only last for a few hours
expiry: i64
}
@ -42,7 +41,6 @@ pub async fn db_init(config: &Config) -> Result<Pool<Sqlite>, Error> {
name_first text not null,
name_second text not null,
auth_code text not null,
discord text,
expiry integer not null
)",
)