File tree 1 file changed +4
-4
lines changed
query-engine/query-engine-c-abi/src
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -44,14 +44,14 @@ impl From<DirEntry> for MigrationDirectory {
44
44
#[ derive( Debug , Clone ) ]
45
45
pub struct MigrationRecord {
46
46
/// A unique, randomly generated identifier.
47
- pub _id : String ,
47
+ pub id : String ,
48
48
/// The timestamp at which the migration completed *successfully*.
49
49
pub finished_at : Option < Timestamp > ,
50
50
/// The name of the migration, i.e. the name of migration directory
51
51
/// containing the migration script.
52
52
pub migration_name : String ,
53
53
/// The time the migration started being applied.
54
- pub _started_at : Timestamp ,
54
+ pub started_at : Timestamp ,
55
55
/// The time the migration failed
56
56
pub failed_at : Option < Timestamp > ,
57
57
}
@@ -142,9 +142,9 @@ pub fn list_migrations(database_filename: &Path) -> Result<Vec<MigrationRecord>>
142
142
let failed_at: Option < Timestamp > = row. get ( 4 ) . unwrap ( ) ;
143
143
144
144
entries. push ( MigrationRecord {
145
- _id : id,
145
+ id,
146
146
migration_name,
147
- _started_at : started_at,
147
+ started_at,
148
148
finished_at,
149
149
failed_at,
150
150
} ) ;
You can’t perform that action at this time.
0 commit comments