perfectly working system

This commit is contained in:
filipriec
2025-02-15 23:36:20 +01:00
parent b871d40759
commit 598db07f16
8 changed files with 76 additions and 62 deletions

View File

@@ -0,0 +1,6 @@
-- Add migration script here
CREATE TABLE processed_data (
id SERIAL PRIMARY KEY,
content TEXT NOT NULL,
created_at TIMESTAMP DEFAULT NOW()
);