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
YdbDataCompatibilityChecker supports multi-table entities (can now take a list of TableDescriptors, not entity classes)
New @Table annotation attribute to require explicit table name specification on every table usage: @Table(explicitDescriptor = true|false)
Prohibits calls to EntitySchema.getName() because such an entity has no default table name
Requires BaseDb.table(TableDescriptor) instead of BaseDb.table(<entity class>) which implicitly deduces table name from schema
Requires new TableDescriptor(<entity class>, "<table name>") instead of TableDescriptor.from(<entity class>) which implicitly deduces table name from schema