Skip to content

Commit 0ec17d3

Browse files
committed
Revert "Suppress dead code warning in MigrationRecord"
This reverts commit 4ccdd05.
1 parent cbe6577 commit 0ec17d3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

query-engine/query-engine-c-abi/src/migrations.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,14 @@ impl From<DirEntry> for MigrationDirectory {
4444
#[derive(Debug, Clone)]
4545
pub struct MigrationRecord {
4646
/// A unique, randomly generated identifier.
47-
pub _id: String,
47+
pub id: String,
4848
/// The timestamp at which the migration completed *successfully*.
4949
pub finished_at: Option<Timestamp>,
5050
/// The name of the migration, i.e. the name of migration directory
5151
/// containing the migration script.
5252
pub migration_name: String,
5353
/// The time the migration started being applied.
54-
pub _started_at: Timestamp,
54+
pub started_at: Timestamp,
5555
/// The time the migration failed
5656
pub failed_at: Option<Timestamp>,
5757
}
@@ -142,9 +142,9 @@ pub fn list_migrations(database_filename: &Path) -> Result<Vec<MigrationRecord>>
142142
let failed_at: Option<Timestamp> = row.get(4).unwrap();
143143

144144
entries.push(MigrationRecord {
145-
_id: id,
145+
id,
146146
migration_name,
147-
_started_at: started_at,
147+
started_at,
148148
finished_at,
149149
failed_at,
150150
});

0 commit comments

Comments
 (0)