From a4c38c663f249b0078f714a54b28f874ca87a90a Mon Sep 17 00:00:00 2001 From: Namu Date: Thu, 2 Apr 2026 00:30:52 +0200 Subject: [PATCH] feat: add example schema file --- example.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 example.json diff --git a/example.json b/example.json new file mode 100644 index 0000000..97a0605 --- /dev/null +++ b/example.json @@ -0,0 +1,13 @@ +[ + { + "name": "products", + "strict": false, + "columns": [ + { + "name": "id", + "datatype": "Integer", + "primary_key": true + } + ] + } +]