Skip to content
Snippets Groups Projects
Commit e20a4910 authored by Rhys Evans's avatar Rhys Evans
Browse files

mock database works pair programmers Rhys Evans, Rhys Nute

parent dae0ea18
Branches pleaseSQLWork
No related tags found
No related merge requests found
spring.datasource.url=jdbc:mariadb://localhost:3306/rhys
spring.datasource.url=jdbc:mariadb://localhost:3306/users
spring.datasource.username=root
spring.datasource.password=comsc
spring.sql.init.mode=always
delete from rhys;
insert into rhys (name, tel_number) values ( 'Ian', '111');
\ No newline at end of file
delete from users;
insert into users (name) values ( 'Rhys',;
\ No newline at end of file
drop table if exists rhys;
create table if not exists rhys (
drop table if exists users;
create table if not exists users (
id bigint auto_increment primary key,
name varchar(128),
tel_number varchar(128)
name varchar(128)
) engine=InnoDB;
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment