annotated
annotated copied to clipboard
Schema generation using annotated entities and mappers
Refresh readme, add link to documentation - Header block with badges and links to docs, discord, Support us (funding)... - Installation block - Links to configurations (cycle-orm.dev, spiral.dev) - Cleanup...
> It would be nice to be able to define charsets for columns like this: ```php #[Entity] class User { #[Column(type: 'primary')] private int $id; #[Column(type: 'string', name: 'username', charset:...
### No duplicates 🥲. - [X] I have searched for a similar issue in our bug tracker and didn't find any solutions. ### What happened? When I generate my schema...
including: - hasOne - belongsTo (inversed to hasOne) - morphedHasOne - belongsToMorphed (inversed to morphedHasOne)
Partial fix of https://github.com/cycle/annotated/issues/97 ## 🔍 What was changed I removed initialization of relations if the declaring class differs from currently processed reflection class. This solves a case from issue...
Migration generator not add precision and scale params for decimal column type in Embeddable class 🐛
### No duplicates 🥲. - [X] I have searched for a similar issue in our bug tracker and didn't find any solutions. ### What happened? Hello ! Thanks for your...
### No duplicates 🥲. - [X] I have searched for a similar issue in our bug tracker and didn't find any solutions. ### What happened? Hi, In a scenario where...
### Describe the bug Hi, I am trying to integrate CycleORM into a Symfony application, in order to replace Doctrine, and I encountered a strange behavior with relations. I will...
### I have an idea! Hi, I would love to add a [`check constraint`](https://mariadb.com/kb/en/constraint/) to my table using attributes. I imagine the functionality as following, but it is just a...