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; drop table if exists trail;
create table if not exists trail( create table if not exists trail
trailID bigint auto_increment primary key, (
name varchar(100) trailID bigint auto_increment primary key,
) engine=InnoDB; name varchar
drop table if exists locations; ) engine=InnoDB;
create table if not exists locations( drop table if exists locations;
locationID bigint auto_increment primary key, create table if not exists locations
name varchar(100) (
) engine=InnoDB; locationID bigint auto_increment primary key,
drop table if exists users; name varchar
create table if not exists users( ) engine=InnoDB;
userID bigint auto_increment primary key, drop table if exists users;
name varchar(100) create table if not exists users
) engine=InnoDB; (
\ No newline at end of file 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