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

implemented longtext to store large amounts of data

parent 8d75ddba
No related branches found
No related tags found
1 merge request!23Resolve "As a developer I want all landmarks to be stored together"
...@@ -11,7 +11,7 @@ create table if not exists locations ...@@ -11,7 +11,7 @@ create table if not exists locations
locationID bigint auto_increment primary key, locationID bigint auto_increment primary key,
locationName varchar(128), locationName varchar(128),
locationEmail varchar(128), locationEmail varchar(128),
locationDescription varchar(max), locationDescription longtext, #to store large text data
locationPlace varchar(255), locationPlace varchar(255),
locationTrailID varchar(128) locationTrailID varchar(128)
) engine=InnoDB; ) engine=InnoDB;
......
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