Skip to content
Snippets Groups Projects
Commit e9129acb authored by Rhys Nute's avatar Rhys Nute
Browse files

tidied schema

parent 264db9d2
No related branches found
No related tags found
1 merge request!16Ready to merge - Database
drop table if exists trail;
create table if not exists trail(
trailID bigint auto_increment primary key,
name varchar(100)
) engine=InnoDB;
drop table if exists locations;
create table if not exists locations(
locationID bigint auto_increment primary key,
name varchar(100)
) engine=InnoDB;
drop table if exists users;
create table if not exists users(
userID bigint auto_increment primary key,
name varchar(100)
) engine=InnoDB;
\ No newline at end of file
create table if not exists trail
(
trailID bigint auto_increment primary key,
name varchar
) engine=InnoDB;
drop table if exists locations;
create table if not exists locations
(
locationID bigint auto_increment primary key,
name varchar
) engine=InnoDB;
drop table if exists users;
create table if not exists users
(
userID bigint auto_increment primary key,
name varchar
) 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