diff --git a/deployer/src/persistence/service.rs b/deployer/src/persistence/service.rs index 40f14d73d8..6ec7186b47 100644 --- a/deployer/src/persistence/service.rs +++ b/deployer/src/persistence/service.rs @@ -20,8 +20,8 @@ impl From for service::Response { impl FromRow<'_, SqliteRow> for Service { fn from_row(row: &SqliteRow) -> Result { Ok(Self { - id: Ulid::from_string(row.try_get("service_id")?).expect("to have a valid ulid string"), - name: row.try_get("service_name")?, + id: Ulid::from_string(row.try_get("id")?).expect("to have a valid ulid string"), + name: row.try_get("name")?, }) } } diff --git a/deployer/ulid0.dylib b/deployer/ulid0.dylib new file mode 100755 index 0000000000..0d580e2b2b Binary files /dev/null and b/deployer/ulid0.dylib differ