This file contains hidden or 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 IF NOT EXISTS regioni ( | |
| id int(11) NOT NULL auto_increment, | |
| nome varchar(100) NOT NULL, | |
| PRIMARY KEY (id) | |
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8; | |
| CREATE TABLE IF NOT EXISTS province ( | |
| id int(11) NOT NULL auto_increment, | |
| nome varchar(100) NOT NULL, | |
| id_regione int(11) NOT NULL, |