Update passkeys_o timestamps to use timestamp type instead of string
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user