Created
November 2, 2019 21:23
-
-
Save slawo-ch/6a247af8fae5a102c9cf14fb98024f3c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| DROP TABLE IF EXISTS still | |
| CREATE TABLE still ( | |
| still_id BIGINT GENERATED BY DEFAULT AS IDENTITY PRIMARY KEY, | |
| sample_index BIGINT, | |
| orientation varchar(20), | |
| model varchar(200), | |
| device varchar(200), | |
| arrival_time NUMERIC(32,12), | |
| sensor_time NUMERIC(32,12), | |
| creation_time NUMERIC(32,12), | |
| x NUMERIC(32,20), | |
| y NUMERIC(32,20), | |
| z NUMERIC(32,20) | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment