From 33b9d8ef675952d48016bedd945803c7420780af Mon Sep 17 00:00:00 2001 From: Dessalines Date: Sat, 3 Aug 2024 12:14:14 -0400 Subject: [PATCH] Fixing sql_format. --- .../2024-08-03-155932_increase_post_url_max_length/down.sql | 1 + migrations/2024-08-03-155932_increase_post_url_max_length/up.sql | 1 + 2 files changed, 2 insertions(+) diff --git a/migrations/2024-08-03-155932_increase_post_url_max_length/down.sql b/migrations/2024-08-03-155932_increase_post_url_max_length/down.sql index 83f1a5945..d25918578 100644 --- a/migrations/2024-08-03-155932_increase_post_url_max_length/down.sql +++ b/migrations/2024-08-03-155932_increase_post_url_max_length/down.sql @@ -1,2 +1,3 @@ ALTER TABLE post ALTER COLUMN url TYPE varchar(512); + diff --git a/migrations/2024-08-03-155932_increase_post_url_max_length/up.sql b/migrations/2024-08-03-155932_increase_post_url_max_length/up.sql index 8dcd0faec..7c6818d22 100644 --- a/migrations/2024-08-03-155932_increase_post_url_max_length/up.sql +++ b/migrations/2024-08-03-155932_increase_post_url_max_length/up.sql @@ -2,3 +2,4 @@ -- From here: https://stackoverflow.com/questions/417142/what-is-the-maximum-length-of-a-url-in-different-browsers#417184 ALTER TABLE post ALTER COLUMN url TYPE varchar(2000); +