Merge branch 'QA_4_9'
I missed the sign-off for180b45f225ande0889beb52So the sign-off below is also for them. Signed-off-by: William Desportes <williamdes@wdes.fr>
This commit is contained in:
commit
bc585d97f7
@ -1481,7 +1481,7 @@ create the example tables:
|
||||
country_code char(1) NOT NULL default '',
|
||||
description varchar(10) NOT NULL default '',
|
||||
PRIMARY KEY (country_code)
|
||||
) TYPE=MyISAM;
|
||||
) ENGINE=MyISAM;
|
||||
|
||||
INSERT INTO REL_countries VALUES ('C', 'Canada');
|
||||
|
||||
@ -1491,16 +1491,16 @@ create the example tables:
|
||||
town_code varchar(5) default '0',
|
||||
country_code char(1) NOT NULL default '',
|
||||
PRIMARY KEY (id)
|
||||
) TYPE=MyISAM;
|
||||
) ENGINE=MyISAM;
|
||||
|
||||
INSERT INTO REL_persons VALUES (11, 'Marc', 'S', '');
|
||||
INSERT INTO REL_persons VALUES (11, 'Marc', 'S', 'C');
|
||||
INSERT INTO REL_persons VALUES (15, 'Paul', 'S', 'C');
|
||||
|
||||
CREATE TABLE REL_towns (
|
||||
town_code varchar(5) NOT NULL default '0',
|
||||
description varchar(30) NOT NULL default '',
|
||||
PRIMARY KEY (town_code)
|
||||
) TYPE=MyISAM;
|
||||
) ENGINE=MyISAM;
|
||||
|
||||
INSERT INTO REL_towns VALUES ('S', 'Sherbrooke');
|
||||
INSERT INTO REL_towns VALUES ('M', 'Montréal');
|
||||
|
||||
Loading…
Reference in New Issue
Block a user