CREATE TABLE data ( id int(11) not null AUTO_INCREMENT PRIMARY KEY, file_name varchar(255) COLLATE utf8_unicode_ci NOT NULL, name varchar(256) not null, email text not null, phone varchar(256) not null, description varchar(256) not null, gps_location varchar(256) null, location varchar(256) not null, uploaded_on varchar(256) not null, status enum('1','0') COLLATE utf8_unicode_ci NOT NULL DEFAULT '1' );