-
Notifications
You must be signed in to change notification settings - Fork 879
Open
Labels
Description
I commonly have long-ish table names that represent, say, a database table, and I define fields within:
[long_table_name_that_starts_with_a]
[long_table_name_that_starts_with_a.field1]
null = true
options = ["a", "b", "c"]
[long_table_name_that_starts_with_a.field2]
null = false
options = [1, 2, 3]This is fairly unreadable, and it would be nice to alias tables, perhaps with the following syntax, or something similar
[long_table_name_that_starts_with_a]: a
[a.field1]
null = true
options = ["a", "b", "c"]
[a.field2]
null = false
options = [1, 2, 3]eksortso, JustusFluegel, Mouli04, ns-sjorgedeaguiar and GregHib