We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Idea, to add ability to have Behaviors for Embeddable
#[Embeddable] #[Behavior\CreatedAt(column: 'created_at')] #[Behavior\UpdatedAt(column: 'updated_at')] #[Behavior\SoftDelete(column: 'deleted_at')] class UserTimestamps { #[Column(type: 'datetime')] public \DateTimeImmutable $createdAt; #[Column(type: 'datetime')] public \DateTimeImmutable $updatedAt; #[Column(type: 'datetime', nullable: true)] public ?\DateTimeImmutable $deletedAt; }
The text was updated successfully, but these errors were encountered:
Hi. I think that issue should be opened in https://github.com/cycle/orm
Sorry, something went wrong.
open in: cycle/orm#473
No branches or pull requests
Idea, to add ability to have Behaviors for Embeddable
The text was updated successfully, but these errors were encountered: