Commit 9aac40bf authored by OzzieIsaacs's avatar OzzieIsaacs Committed by GitHub

Fix #20

Series and custom composite coloums are also excluded in the view
parent d051a1db
......@@ -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:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment