diff options
author | stuconnolly <stuart02@gmail.com> | 2013-04-29 20:16:11 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2013-04-29 20:16:11 +0000 |
commit | c26e864715984f877e07e3746fc9164f788ab2ca (patch) | |
tree | d71ffd5b19e1cbe8ea94f514224c94df80389d7b /Source/SPTablesList.h | |
parent | a6c5548162bd5e554be6819b7a1a14d684e830ca (diff) | |
download | sequelpro-c26e864715984f877e07e3746fc9164f788ab2ca.tar.gz sequelpro-c26e864715984f877e07e3746fc9164f788ab2ca.tar.bz2 sequelpro-c26e864715984f877e07e3746fc9164f788ab2ca.zip |
Issue #1536: Add the option to force delete a table, which will disable then re-enable foreign checks. Also, provide a more helpful error message when a table cannot be deleted because of foreign key constraints.
Diffstat (limited to 'Source/SPTablesList.h')
-rw-r--r-- | Source/SPTablesList.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/SPTablesList.h b/Source/SPTablesList.h index c46763fb..56d8dfa3 100644 --- a/Source/SPTablesList.h +++ b/Source/SPTablesList.h @@ -189,16 +189,16 @@ - (BOOL)selectItemsWithNames:(NSArray *)theNames; // Table list filter interaction -- (void) showFilter; -- (void) hideFilter; -- (void) clearFilter; +- (void)showFilter; +- (void)hideFilter; +- (void)clearFilter; #endif - (IBAction) updateFilter:(id)sender; // Task interaction -- (void) startDocumentTaskForTab:(NSNotification *)aNotification; -- (void) endDocumentTaskForTab:(NSNotification *)aNotification; -- (void) setTableListSelectability:(BOOL)isSelectable; +- (void)startDocumentTaskForTab:(NSNotification *)aNotification; +- (void)endDocumentTaskForTab:(NSNotification *)aNotification; +- (void)setTableListSelectability:(BOOL)isSelectable; - (BOOL)isTableNameValid:(NSString *)tableName forType:(SPTableType)tableType; - (BOOL)isTableNameValid:(NSString *)tableName forType:(SPTableType)tableType ignoringSelectedTable:(BOOL)ignoreSelectedTable; |