Add init ddl

This commit is contained in:
2024-08-24 16:20:01 +02:00
parent 92dbe446e8
commit b799e1bbf7
4 changed files with 71 additions and 2 deletions

4
db.ddl Normal file
View File

@@ -0,0 +1,4 @@
CREATE TABLE price (
price int NOT NULL,
date date default current_timestamp
)