aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPTablesList.m
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2011-06-19 13:38:43 +0000
committerstuconnolly <stuart02@gmail.com>2011-06-19 13:38:43 +0000
commitf5292a63a71f365e5863e3ed977b955736daabea (patch)
tree3780e59f5b8d8d1888a2fc61b5f01435534caee6 /Source/SPTablesList.m
parentd2b26455c859064af12022459652a804d2be1750 (diff)
downloadsequelpro-f5292a63a71f365e5863e3ed977b955736daabea.tar.gz
sequelpro-f5292a63a71f365e5863e3ed977b955736daabea.tar.bz2
sequelpro-f5292a63a71f365e5863e3ed977b955736daabea.zip
With the exception of CSV tables, make the initial ID column the primary key as well as auto increment. Implementes issue #297.
Diffstat (limited to 'Source/SPTablesList.m')
-rw-r--r--Source/SPTablesList.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPTablesList.m b/Source/SPTablesList.m
index fe43c845..be9e54d7 100644
--- a/Source/SPTablesList.m
+++ b/Source/SPTablesList.m
@@ -2196,7 +2196,7 @@ static NSString *SPDuplicateTable = @"SPDuplicateTable";
engineStatement = [NSString stringWithFormat:@"%@ = %@", [[tableDocumentInstance serverSupport] engineTypeQueryName], [tableType backtickQuotedString]];
}
- NSString *createStatement = [NSString stringWithFormat:@"CREATE TABLE %@ (%@) %@ %@", [tableName backtickQuotedString], ([tableType isEqualToString:@"CSV"]) ? @"id INT NOT NULL" : @"id INT", charSetStatement, engineStatement];
+ NSString *createStatement = [NSString stringWithFormat:@"CREATE TABLE %@ (id INT(11) UNSIGNED NOT NULL%@) %@ %@", [tableName backtickQuotedString], [tableType isEqualToString:@"CSV"] ? @"" : @" PRIMARY KEY AUTO_INCREMENT", charSetStatement, engineStatement];
// Create the table
[mySQLConnection queryString:createStatement];