end of day 3 week 1
This commit is contained in:
14
week 1/day3/init_db.sql
Normal file
14
week 1/day3/init_db.sql
Normal file
@@ -0,0 +1,14 @@
|
||||
CREATE TABLE users(
|
||||
id SERIAL PRIMARY KEY,
|
||||
username TEXT
|
||||
);
|
||||
|
||||
INSERT INTO users (username) VALUES
|
||||
('admin'),
|
||||
('root1'),
|
||||
('John_Doe'),
|
||||
('Alice'),
|
||||
('Bob42'),
|
||||
('charlie'),
|
||||
('eve99'),
|
||||
('Mallory');
|
||||
Reference in New Issue
Block a user