Skip to content
Snippets Groups Projects
Commit 569ee479 authored by Daniel Lorych's avatar Daniel Lorych :cookie:
Browse files

Add login table sql scripts

parent 92de514f
No related branches found
No related tags found
No related merge requests found
create table Login(
id SERIAL PRIMARY KEY,
email TEXT,
user_password TEXT,
is_admin BOOLEAN
)
INSERT INTO Login
(email, user_password, is_admin)
VALUES
('user@helios.co.uk', 'userpassword', FALSE),
('admin@helios.co.uk', 'adminpassword', TRUE)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment