Adding code for password generator

This commit is contained in:
2026-06-16 12:35:18 -04:00
parent a626a7e681
commit e0c44f4841
15 changed files with 313 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
create table passwords (
Id integer primary key not null,
Key varchar(256) not null,
Password varchar(256) not null
);
insert into passwords values(NULL, 'test', 'supersecret');