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
Previously, the TableName constants included the Postgres schema name that the tables belonged to. Now it seems that these schema names no longer prefix the table name.
Before
const TableNameExample = "some_schema.example"
After
const TableNameExample = "example"
The text was updated successfully, but these errors were encountered:
GORM Playground Link
Happy to create a link if necessary.
Description
Previously, the
TableName
constants included the Postgres schema name that the tables belonged to. Now it seems that these schema names no longer prefix the table name.Before
After
The text was updated successfully, but these errors were encountered: