9 lines
192 B
SQL
9 lines
192 B
SQL
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');
|