usechrono::{DateTime, Utc};usecrash_orm_derive::{Entity, Schema};usecrateas crash_orm;/// Entity used to track executed migrations
#[derive(Entity, Schema, Debug)]pubstructCrashOrmMigrationRecord{/// ID of the migration
pubid:u32,
/// Name of the migration, derived from the [get_name](super::Migration::get_name) method of a migration
pubname: String,
/// Execution time of the migration
pubexecuted_at:DateTime<Utc>,
}