web-3/migrations/V1_01__initial_schema.sql
2024-11-26 02:32:07 +03:00

10 lines
257 B
SQL

CREATE TABLE IF NOT EXISTS points (
id SERIAL PRIMARY KEY,
x DOUBLE PRECISION NOT NULL,
y DOUBLE PRECISION NOT NULL,
r DOUBLE PRECISION NOT NULL,
hit BOOLEAN NOT NULL,
timestamp BIGINT NOT NULL,
execution_time BIGINT NOT NULL
);