You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
classElementsTable(Table, tablename="meta_elements", schema=AppConfig.DB_SCHEMA):
classification_code=ForeignKey(
references=ClassificationsTable,
target_column=ClassificationsTable.code,
on_delete=OnDelete.cascade,
on_update=OnUpdate.cascade,
required=True,
null=False
)
classClassificationsTable(Table, tablename="meta_classifications", schema=AppConfig.DB_SCHEMA):
...
# other tables omitted due to irrelevance
Piccolo-admin produces the following output in the web GUI:
You can witness the double "Meta Classifications" table in the tables list.
I have verified, that when the ForeignKey column type is replaced with any other column type (Varchar, Integer, etc.),
a duplicate entry is not introduced into the tables list of the admin web GUI.
The text was updated successfully, but these errors were encountered:
Given the following table definitions:
Piccolo-admin produces the following output in the web GUI:
You can witness the double "Meta Classifications" table in the tables list.
I have verified, that when the ForeignKey column type is replaced with any other column type (Varchar, Integer, etc.),
a duplicate entry is not introduced into the tables list of the admin web GUI.
The text was updated successfully, but these errors were encountered: