···3131 .not_null()
3232 .default(Priority::default().to_string()),
3333 )
3434- .col(timestamp(Group::CreatedAt).default(Expr::current_timestamp()))
3535- .col(timestamp(Group::ModifiedAt).default(Expr::current_timestamp()))
3434+ .col(date_time(Group::CreatedAt).default(Expr::current_timestamp()))
3535+ .col(date_time(Group::ModifiedAt).default(Expr::current_timestamp()))
3636 .col(string(Group::ZettelId).not_null().unique_key())
3737 // foreign key for the zettel related to this group
3838 .foreign_key(
···11//! `SeaORM` Entity, @generated by sea-orm-codegen 2.0
22-#![expect(unused_imports)]
3233+#![expect(unused_imports)]
44pub use super::group::Entity as Group;
55pub use super::tag::Entity as Tag;
66pub use super::task::Entity as Task;
···1515/// and add additional functionality to it.
1616pub use migration::types::Priority as PriorityDTO;
17171818-pub use sea_orm::entity::prelude::DateTimeUtc;
1818+pub use sea_orm::entity::prelude::DateTime;
19192020/// Color type, exporting as DTO because I might
2121/// want to newtype wrap this, might not have to, depending