- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatabase.sql
More file actions
Latest commit
19 lines (16 loc) · 460 Bytes
/
Copy pathdatabase.sql
File metadata and controls
19 lines (16 loc) · 460 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
CREATEDATABASEIF NOT EXISTS WebScraper;
USE WebScraper
CREATETABLEAdvertisement (
id INTNOT NULL AUTO_INCREMENT ,
district VARCHAR (255) NOT NULL ,
category VARCHAR (255) NOT NULL ,
title VARCHAR (255) ,
description VARCHAR (255) ,
price VARCHAR (255) ,
url VARCHAR (255) ,
postedOn VARCHAR (255) ,
forSaleBy VARCHAR (255) ,
meta TEXT ,
fullDescription TEXT ,
CONSTRAINTPRIMARY KEY (id)
)ENGINE=INNODB;