Move sortField to relationship setup (#4304)

* Add migration

* Add sort field to relation types

* Remove sortfield options in favor of relationship

* Add sort field configuration to relational setup

* Save m2a sortfield on the correct row

* Add default sort field to system data
This commit is contained in:
Rijk van Zanten
2021-02-25 19:13:36 -05:00
committed by GitHub
parent f088074d48
commit db30acbb8a
23 changed files with 611 additions and 754 deletions

View File

@@ -11,4 +11,7 @@ export type Relation = {
one_collection_field: string | null;
one_allowed_collections: string | null;
junction_field: string | null;
sort_field: string | null;
};