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

inputed businesses into schema file as requested, check and review please.

parent 06920917
No related branches found
No related tags found
2 merge requests!38Draft: Businesses,!31Resolve "As a user, I want to see a page of local authorities so that I can easily source contact details for a variety of different local authorities."
......@@ -70,4 +70,17 @@ create table if not exists localAuthority
county varchar(75),
postcode varchar(15),
website varchar(250)
) engine=InnoDB;
drop table if exists businesses;
create table if not exists businesses
(
businessID bigint auto_increment primary key,
businessName varchar(250),
address1 varchar(250),
address2 varchar(250),
city varchar(100),
county varchar(75),
postcode varchar(15),
website varchar(250)
) 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