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
130 B
SQL
8 lines
130 B
SQL
INSERT INTO devices (
|
|
device_id,
|
|
device_name,
|
|
device_location,
|
|
creation_date,
|
|
update_date
|
|
)
|
|
VALUES ($1, $2, $3, $4, $5); |