feat: add a new col and populate it
This commit is contained in:
parent
f193bb5ee9
commit
6510696851
3 changed files with 18 additions and 2 deletions
16
db/2_wolves-id.sql
Normal file
16
db/2_wolves-id.sql
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
|
||||||
|
-- add a col for the wolves ID
|
||||||
|
ALTER TABLE accounts ADD COLUMN id_wolves integer DEFAULT 0;
|
||||||
|
|
||||||
|
-- fill in the values
|
||||||
|
UPDATE accounts
|
||||||
|
SET id_wolves=(
|
||||||
|
SELECT id_wolves
|
||||||
|
FROM accounts_wolves
|
||||||
|
WHERE accounts.mail=accounts_wolves.email
|
||||||
|
)
|
||||||
|
WHERE (
|
||||||
|
SELECT id_wolves
|
||||||
|
FROM accounts_wolves
|
||||||
|
WHERE accounts.mail=accounts_wolves.email
|
||||||
|
) IS NOT NULL
|
|
@ -55,6 +55,7 @@ async fn update_ldap(config: &Config, db: &Pool<Sqlite>) {
|
||||||
mail: "".to_string(),
|
mail: "".to_string(),
|
||||||
student_id: "".to_string(),
|
student_id: "".to_string(),
|
||||||
secure: false,
|
secure: false,
|
||||||
|
id_wolves: 0,
|
||||||
};
|
};
|
||||||
|
|
||||||
// pull out the required info
|
// pull out the required info
|
||||||
|
|
|
@ -57,12 +57,11 @@ pub struct Accounts {
|
||||||
pub mail: String,
|
pub mail: String,
|
||||||
pub student_id: String,
|
pub student_id: String,
|
||||||
pub secure: bool,
|
pub secure: bool,
|
||||||
|
pub id_wolves: i64,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn db_init(config: &Config) -> Result<Pool<Sqlite>, Error> {
|
pub async fn db_init(config: &Config) -> Result<Pool<Sqlite>, Error> {
|
||||||
dbg!(config);
|
|
||||||
let database = format!("{}/{}", &config.home, &config.database);
|
let database = format!("{}/{}", &config.home, &config.database);
|
||||||
dbg!(&database);
|
|
||||||
let pool = SqlitePoolOptions::new()
|
let pool = SqlitePoolOptions::new()
|
||||||
.max_connections(5)
|
.max_connections(5)
|
||||||
.connect_with(
|
.connect_with(
|
||||||
|
|
Loading…
Add table
Reference in a new issue