From e40b7dc2e7ac24b508532adf651d10346974a015 Mon Sep 17 00:00:00 2001 From: MCorange99 Date: Sat, 30 Mar 2024 19:11:07 +0200 Subject: [PATCH] I THINK THIS IS IT --- migrations/20240330145505_posts.up.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/migrations/20240330145505_posts.up.sql b/migrations/20240330145505_posts.up.sql index e2f0ac3..92aac42 100644 --- a/migrations/20240330145505_posts.up.sql +++ b/migrations/20240330145505_posts.up.sql @@ -5,7 +5,7 @@ CREATE TABLE IF NOT EXISTS posts ( descr TEXT NOT NULL, img_url TEXT NOT NULL, origin_url TEXT NOT NULL, - original_request JSON NOT NULL, + original_request TEXT NOT NULL, posted_on TIMESTAMP NOT NULL, PRIMARY KEY (id) )