Skip to content

Commit

Permalink
fix(parquet-exporter): update schema for tags
Browse files Browse the repository at this point in the history
  • Loading branch information
karlprieb authored and djwhitt committed Sep 17, 2024
1 parent 2f60511 commit d685d92
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/database/duckdb/schema.sql
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
CREATE TABLE IF NOT EXISTS tags (
height UINTEGER NOT NULL,
id TEXT NOT NULL,
height UBIGINT NOT NULL,
id BLOB NOT NULL,
tag_index USMALLINT NOT NULL,
created_at INTEGER NOT NULL,
tag_name TEXT NOT NULL,
tag_value TEXT NOT NULL,
created_at UBIGINT NOT NULL,
tag_name BLOB NOT NULL,
tag_value BLOB NOT NULL,
is_data_item BOOLEAN NOT NULL
);

0 comments on commit d685d92

Please sign in to comment.