The schema I am currently putting together is already at 1,000 lines and I’m probably only half way through it.
I have added all tables to table groups.
There is already the ability to colapse tables individually in the editor, but it would be great if we could do that for a whole group.
This might require a change to how groups work though, so instead of:
TableGroup tablegroup_name {
table1
table2
table3
}
We could have the table definitions in the group itself:
TableGroup tablegroup_name {
Table table1 {
id integer
}
Table table2 {
id integer
}
Table table3 {
id integer
}
}