diff options
author | rowanbeentje <rowan@beent.je> | 2012-03-16 09:41:37 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2012-03-16 09:41:37 +0000 |
commit | eab6df4de773259f90dd5a1d25e44ca4d2765bbf (patch) | |
tree | ab9227a861da4d8865479d1b0f7f0b601ef87f72 /Source/SPTableData.h | |
parent | d4baea934555c1b58eba34db68712fdb67c7871f (diff) | |
download | sequelpro-eab6df4de773259f90dd5a1d25e44ca4d2765bbf.tar.gz sequelpro-eab6df4de773259f90dd5a1d25e44ca4d2765bbf.tar.bz2 sequelpro-eab6df4de773259f90dd5a1d25e44ca4d2765bbf.zip |
- Fix a bug in the SPMySQL integration branch causing the table triggers list never to be initialised - 10.7 magically fixed this and worked, but 10.6 didn't show any triggers. Thanks to schlabberdog for spotting and diagnosing this issue!
Diffstat (limited to 'Source/SPTableData.h')
-rw-r--r-- | Source/SPTableData.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPTableData.h b/Source/SPTableData.h index c7ebe37b..94c95da4 100644 --- a/Source/SPTableData.h +++ b/Source/SPTableData.h @@ -33,7 +33,7 @@ NSMutableArray *columns; NSMutableArray *columnNames; NSMutableArray *constraints; - NSMutableArray *triggers; + NSArray *triggers; NSMutableDictionary *status; NSString *tableEncoding; |