Added a variable declaration in SQL script

This commit is contained in:
Alex Tavarez
2025-09-03 14:35:03 -04:00
parent 7a8555dc85
commit ab5711c584
2 changed files with 4 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
PRAGMA foreign_keys = ON;
DECLARE @email_address varchar = 'admin@sukaato.moe';
CREATE TABLE [IF NOT EXISTS] [User].users (
id INTEGER PRIMARY KEY,

View File

@@ -1,5 +1,7 @@
PRAGMA foreign_keys = ON;
DECLARE @email_address varchar = 'admin@sukaato.moe';
INSERT INTO users (
username,
password,
@@ -9,6 +11,6 @@ INSERT INTO users (
VALUES (
'root',
'$argon2id$v=19$m=256,t=1,p=4$JRuXmK5RvRJvvpvpWIF2UA$0uf3V1FHaIVmCgp2JfF+Mfrm66ihKXhKkf0RN820y/k',
'admin@sukaato.moe',
@email_address,
'[15, 15, 15, 15, 15, 15]'
);