V0.6.5 Arroyo Toad

This commit is contained in:
Christian Risi
2024-12-16 09:57:56 +00:00
parent c47eea3826
commit d0d7799d62
16 changed files with 754 additions and 7 deletions

View File

@@ -0,0 +1,13 @@
CREATE TABLE "IoT-Sensors-Data" (
"id" serial PRIMARY KEY NOT NULL,
"deviceType" integer NOT NULL,
"deviceID" integer NOT NULL,
"timestamp" date NOT NULL,
"xCoordinates" integer NOT NULL,
"yCoordinates" integer NOT NULL,
"zCoordinates" integer NOT NULL,
"dataType" text NOT NULL,
"mean_value" real NOT NULL,
"std_value" real NOT NULL,
CONSTRAINT "IoT-Sensors-Data_id_unique" UNIQUE("id")
);

View File

@@ -0,0 +1,100 @@
{
"id": "92bb7aaa-a1a9-42a6-9800-74a7d19fa67b",
"prevId": "00000000-0000-0000-0000-000000000000",
"version": "7",
"dialect": "postgresql",
"tables": {
"public.IoT-Sensors-Data": {
"name": "IoT-Sensors-Data",
"schema": "",
"columns": {
"id": {
"name": "id",
"type": "serial",
"primaryKey": true,
"notNull": true
},
"deviceType": {
"name": "deviceType",
"type": "integer",
"primaryKey": false,
"notNull": true
},
"deviceID": {
"name": "deviceID",
"type": "integer",
"primaryKey": false,
"notNull": true
},
"timestamp": {
"name": "timestamp",
"type": "date",
"primaryKey": false,
"notNull": true
},
"xCoordinates": {
"name": "xCoordinates",
"type": "integer",
"primaryKey": false,
"notNull": true
},
"yCoordinates": {
"name": "yCoordinates",
"type": "integer",
"primaryKey": false,
"notNull": true
},
"zCoordinates": {
"name": "zCoordinates",
"type": "integer",
"primaryKey": false,
"notNull": true
},
"dataType": {
"name": "dataType",
"type": "text",
"primaryKey": false,
"notNull": true
},
"mean_value": {
"name": "mean_value",
"type": "real",
"primaryKey": false,
"notNull": true
},
"std_value": {
"name": "std_value",
"type": "real",
"primaryKey": false,
"notNull": true
}
},
"indexes": {},
"foreignKeys": {},
"compositePrimaryKeys": {},
"uniqueConstraints": {
"IoT-Sensors-Data_id_unique": {
"name": "IoT-Sensors-Data_id_unique",
"nullsNotDistinct": false,
"columns": [
"id"
]
}
},
"policies": {},
"checkConstraints": {},
"isRLSEnabled": false
}
},
"enums": {},
"schemas": {},
"sequences": {},
"roles": {},
"policies": {},
"views": {},
"_meta": {
"columns": {},
"schemas": {},
"tables": {}
}
}

View File

@@ -0,0 +1,13 @@
{
"version": "7",
"dialect": "postgresql",
"entries": [
{
"idx": 0,
"version": "7",
"when": 1734302951810,
"tag": "0000_wide_darkhawk",
"breakpoints": true
}
]
}