Adding code for password generator
This commit is contained in:
@@ -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');
|
||||
Reference in New Issue
Block a user