diff options
author | stuconnolly <stuart02@gmail.com> | 2011-07-10 12:44:15 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2011-07-10 12:44:15 +0000 |
commit | 59527d9acd227a9a924fbd66ed29b85ea8b65a02 (patch) | |
tree | dca62602c88706a4d64ba6d1720a744cb269dd9c /Source/SPExportFileUtilities.m | |
parent | 4b071f5866460dbff1bce10a297f3b017dfea26b (diff) | |
download | sequelpro-59527d9acd227a9a924fbd66ed29b85ea8b65a02.tar.gz sequelpro-59527d9acd227a9a924fbd66ed29b85ea8b65a02.tar.bz2 sequelpro-59527d9acd227a9a924fbd66ed29b85ea8b65a02.zip |
Add the option to the SQL export view as to whether or not the AUTO_INCREMENT value on a table's structure is included. Defaults to not included. Implements issue #1064.
Diffstat (limited to 'Source/SPExportFileUtilities.m')
-rw-r--r-- | Source/SPExportFileUtilities.m | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/Source/SPExportFileUtilities.m b/Source/SPExportFileUtilities.m index b23d0b78..f3ae56e9 100644 --- a/Source/SPExportFileUtilities.m +++ b/Source/SPExportFileUtilities.m @@ -35,10 +35,13 @@ typedef enum SPExportErrorCancelExport = 0, SPExportErrorReplaceFiles = 1, SPExportErrorSkipErrorFiles = 2 -} SPExportErrorChoice; +} +SPExportErrorChoice; @interface SPExportController (SPExportFileUtilitiesPrivateAPI) - - (void)_reopenExportSheet; + +- (void)_reopenExportSheet; + @end @implementation SPExportController (SPExportFileUtilities) @@ -302,10 +305,6 @@ typedef enum } } -@end - -@implementation SPExportController (SPExportFileUtilitiesPrivateAPI) - /** * Re-open the export sheet without resetting the interface - for use on error. */ |