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
Is your feature request related to a problem? Please describe.
I'm adapting an existing database structure using the jet generator. It works fine but it generates the tables with all columns/fields.
I would like to be able to skip columns/fields from tables as well in the generator.
There doesn't seem to be a way to skip columns/fields using the TableSQLBuilder.UseColumn function like is possible with schemas/tables.
Describe the solution you'd like
Adding a Skip option to the TableSQLBuilderColumn structure (UseColumn(columnsFunc func(column metadata.Column) TableSQLBuilderColumn)) so columns/fields can be programmatically skipped.
Is this something that is already possible? If not, would this be something that could be implemented?
The text was updated successfully, but these errors were encountered:
The columns are used by other parts of an already existing application. The new application won't need these specific columns as they are only used by the existing application that hopefully will then soon be superseded by the new application.
So to add it would be nice to be able to hide/skip these columns so that they don't end up being used in the new application where they shouldn't be used as they won't be part of the table structure in the future. I hope this makes sense.
Is your feature request related to a problem? Please describe.
I'm adapting an existing database structure using the jet generator. It works fine but it generates the tables with all columns/fields.
I would like to be able to skip columns/fields from tables as well in the generator.
There doesn't seem to be a way to skip columns/fields using the
TableSQLBuilder.UseColumn
function like is possible with schemas/tables.Describe the solution you'd like
Adding a
Skip
option to theTableSQLBuilderColumn
structure (UseColumn(columnsFunc func(column metadata.Column) TableSQLBuilderColumn)
) so columns/fields can be programmatically skipped.Is this something that is already possible? If not, would this be something that could be implemented?
The text was updated successfully, but these errors were encountered: