Update passkeys_o timestamps to use timestamp type instead of string

This commit is contained in:
Jeppe Bundgaard
2026-02-11 15:47:41 +01:00
parent fa5a4bf1bf
commit a37e01f7f3
+3 -3
View File
@@ -73,9 +73,9 @@ class passkeys_o extends db
$this->transports = new object_property($this->table, $this->id, 'transports', 'json', false);
$this->backup_state = new object_property($this->table, $this->id, 'backup_state', 'json', false);
$this->name = new object_property($this->table, $this->id, 'name', 'string', false);
$this->created_at = new object_property($this->table, $this->id, 'created_at', 'string', false);
$this->updated_at = new object_property($this->table, $this->id, 'updated_at', 'string', false);
$this->deleted_at = new object_property($this->table, $this->id, 'deleted_at', 'string', false);
$this->created_at = new object_property($this->table, $this->id, 'created_at', 'timestamp', false);
$this->updated_at = new object_property($this->table, $this->id, 'updated_at', 'timestamp', false);
$this->deleted_at = new object_property($this->table, $this->id, 'deleted_at', 'timestamp', false);
}
public function objectChanged(): void