From 5221bd6aea6d0cc621f6e868ae2d3c58f5c9cbe2 Mon Sep 17 00:00:00 2001 From: MCorange99 Date: Sat, 30 Mar 2024 19:14:58 +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 92aac42..56e9862 100644 --- a/migrations/20240330145505_posts.up.sql +++ b/migrations/20240330145505_posts.up.sql @@ -6,6 +6,6 @@ CREATE TABLE IF NOT EXISTS posts ( img_url TEXT NOT NULL, origin_url TEXT NOT NULL, original_request TEXT NOT NULL, - posted_on TIMESTAMP NOT NULL, + posted_on BIGINT NOT NULL, PRIMARY KEY (id) )