web-3/migrations/V1_01__initial_schema.sql

10 lines
257 B
MySQL
Raw Permalink Normal View History

2024-11-26 02:32:07 +03:00
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
);