mirror of
https://github.com/Phundrak/georm.git
synced 2026-07-29 04:19:18 +02:00
19284665e6
Add support for entities with composite primary keys using multiple
#[georm(id)] fields. Automatically generates {EntityName}Id structs for
type-safe composite key handling.
Features:
- Multi-field primary key detection and ID struct generation
- Full CRUD operations (find, create, update, delete, create_or_update)
- Proper SQL generation with AND clauses for composite keys
- Updated documNtation in README and lib.rs
Note: Relationships not yet supported for composite key entities
3 lines
66 B
SQL
3 lines
66 B
SQL
-- Add down migration script here
|
|
DROP TABLE IF EXISTS UserRoles;
|