2019-08-20 19:37:45 +00:00
|
|
|
INSERT INTO sensors (
|
|
|
|
sensor_id,
|
|
|
|
sensor_name,
|
|
|
|
sensor_location,
|
|
|
|
wire_id,
|
|
|
|
i2c_bus,
|
|
|
|
i2c_address,
|
|
|
|
gpio_number,
|
|
|
|
sensor_model,
|
|
|
|
sensor_enabled,
|
|
|
|
device_id,
|
|
|
|
creation_date
|
|
|
|
)
|
2020-05-03 12:04:08 +00:00
|
|
|
VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11);
|