Markus Pesch
4931c63c10
changes: - Add postgres backend - Modified or added table attributes. UpdateDate, ForeignKeys, Booleans - Fix test for sqlite and postgres. Compare json instead the struct.
8 lines
126 B
SQL
8 lines
126 B
SQL
UPDATE devices
|
|
SET
|
|
device_name = $1,
|
|
device_location = $2,
|
|
creation_date = $3,
|
|
update_date = $4
|
|
WHERE
|
|
device_id = $5 |