Skip to content

Commit

Permalink
Create schema.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
DenisCarriere authored Oct 18, 2023
1 parent cdb9eb2 commit a732b4c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions schema.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
CREATE TABLE IF NOT EXISTS Clock (
id FixedString(40),
number String,
seconds String,
nanos String,
timestamp String
)
ENGINE = ReplacingMergeTree()
ORDER BY (id)

0 comments on commit a732b4c

Please sign in to comment.