diff options
author | Julien Dessaux | 2024-05-06 00:18:22 +0200 |
---|---|---|
committer | Julien Dessaux | 2024-05-06 00:18:22 +0200 |
commit | 427cc77fa3633aca7c4c3377fa26b0e70921a7b5 (patch) | |
tree | cc8de99037ab539a0786f568cf217b680ac99ec3 /golang/pkg/database/sql | |
parent | [node] fix shortest path to only hop through refueling points (diff) | |
download | spacetraders-427cc77fa3633aca7c4c3377fa26b0e70921a7b5.tar.gz spacetraders-427cc77fa3633aca7c4c3377fa26b0e70921a7b5.tar.bz2 spacetraders-427cc77fa3633aca7c4c3377fa26b0e70921a7b5.zip |
[golang] bootstrapped a client in yet another language
Diffstat (limited to 'golang/pkg/database/sql')
-rw-r--r-- | golang/pkg/database/sql/000_init.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/golang/pkg/database/sql/000_init.sql b/golang/pkg/database/sql/000_init.sql new file mode 100644 index 0000000..c06d2d3 --- /dev/null +++ b/golang/pkg/database/sql/000_init.sql @@ -0,0 +1,7 @@ +CREATE TABLE schema_version ( + version INTEGER NOT NULL +); +CREATE TABLE tokens ( + id INTEGER PRIMARY KEY, + data TEXT NOT NULL +); |