Series and custom composite coloums are also excluded in the view
This commit is contained in:
OzzieIsaacs 2016-08-03 13:14:24 +02:00 committed by GitHub
parent d051a1dbeb
commit 9aac40bfc4
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ books_languages_link = Table('books_languages_link', Base.metadata,
cc = conn.execute("SELECT id, datatype FROM custom_columns")
cc_ids = []
cc_exceptions = ['bool', 'datetime', 'int', 'comments', 'float', ]
cc_exceptions = ['bool', 'datetime', 'int', 'comments', 'float', 'composite','series' ]
books_custom_column_links = {}
for row in cc:
if row.datatype not in cc_exceptions: