addCreateTableSql() is now more encapsulated
[mailer.git] / inc / extensions / ext-country.php
index 2b2db4e8a9ae8f2ab541f9e6d04c9b471cd58ac7..a8a8fe739294ff1da0fd5c1219d5d322cdb65b9e 100644 (file)
@@ -53,14 +53,16 @@ switch (getExtensionMode()) {
        case 'register': // Do stuff when installation is running
                // SQL commands to run
                addDropTableSql('countries');
-               addCreateTableSql('countries', "(
+               addCreateTableSql('countries', "
 `id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
 `code` CHAR(2) NOT NULL DEFAULT 'DE',
 `descr` VARCHAR(255) NOT NULL DEFAULT 'Deutschland',
 `is_active` ENUM('Y','N') NOT NULL DEFAULT 'N',
-KEY (`code`),
-PRIMARY KEY (`id`)
-) ENGINE = {?_TABLE_TYPE?} CHARACTER SET utf8 COLLATE utf8_general_ci COMMENT = 'Country codes and their full-length descriptions'");
+PRIMARY KEY (`id`),
+UNIQUE KEY (`code`)",
+                       'Country codes and their full-length descriptions');
+
+               // Insert first (Germany) country
                addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_countries` (code, descr, is_active) VALUES ('DE','Deutschland','Y')");
 
                // Admin menu