diff --git a/src/main/resources/schema.sql b/src/main/resources/schema.sql index c10ffb8186c2c575d7aaa927c410fe330d3947d6..890adec1b70049a64a85ed25f8c164783b12a513 100644 --- a/src/main/resources/schema.sql +++ b/src/main/resources/schema.sql @@ -1,15 +1,18 @@ 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