Skip to content

Commit

Permalink
Update schema.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
topi314 authored Mar 4, 2023
1 parent ce17b20 commit be4f294
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions sql/schema.sql
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
CREATE TABLE IF NOT EXISTS documents
(
id VARCHAR NOT NULL,
version TIMESTAMP NOT NULL,
content TEXT NOT NULL,
language VARCHAR NOT NULL,
id VARCHAR NOT NULL,
version BIGINT NOT NULL,
content TEXT NOT NULL,
language VARCHAR NOT NULL,
PRIMARY KEY (id, version)
);
);

0 comments on commit be4f294

Please sign in to comment.