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

Change table name Login to User_login

parent 177ebdaf
Branches
No related tags found
No related merge requests found
create table Login(
create table User_Login(
id SERIAL PRIMARY KEY,
email TEXT,
user_password TEXT,
is_admin BOOLEAN
)
INSERT INTO Login
INSERT INTO User_Login
(email, user_password, is_admin)
VALUES
('user@helios.co.uk', 'userpassword', FALSE),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment