This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
create table city( | |
id integer not null auto_increment, | |
name character varying(50) not null, | |
primary key (id) | |
) default character set utf8; | |
create table request ( | |
id integer not null auto_increment, | |
code varchar(50) not null, | |
description varchar(255) not null, |