We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ad104b commit 24b43a7Copy full SHA for 24b43a7
source/schema.lua
@@ -94,6 +94,7 @@ local function fill_entity(schema, alias, entity)
94
entity.table_name = entity.table_name or ((schema.table_prefix or "") .. alias)
95
end
96
for f_alias, field in pairs(entity.fields) do
97
+ field.name = f_alias
98
if primitive_types[field.type] and not primitive_types[field.type].virtual then
99
field.column_name = field.column_name or ((schema.column_prefix or "") ..
100
(entity.column_prefix or "") ..
0 commit comments