That file contains the following code:
Code: Select all
create table realestate (
ID int(11) not null auto_increment,
Created int(11),
Expires int(11),
AuthorID varchar(32),
Category int(11),
Category2 int(11),
Category3 int(11),
object MEDIUMBLOB,
primary key (ID)
);
create table realservices (
ID int(11) not null auto_increment,
Created int(11),
Expires int(11),
AuthorID varchar(32),
Category int(11),
Category2 int(11),
Category3 int(11),
object MEDIUMBLOB,
primary key (ID)
);Code: Select all
bash: realestate.sql: line 1: syntax error near unexpected token `(‘
bash: realestate.sql: line 1: `create table realestate (‘Thanks!