From 00ec33213631484c3638929596c76bf6676bb836 Mon Sep 17 00:00:00 2001 From: Nils-Johan Gynther Date: Sun, 3 May 2026 12:40:25 +0200 Subject: [PATCH] refactor(init-script): simplify initialization script for Prisma migrations --- db/init/001-init.sql | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/db/init/001-init.sql b/db/init/001-init.sql index 13a97d4a..16d3c38d 100644 --- a/db/init/001-init.sql +++ b/db/init/001-init.sql @@ -1,8 +1,2 @@ -CREATE TABLE IF NOT EXISTS app_bootstrap_check ( - id INT AUTO_INCREMENT PRIMARY KEY, - message VARCHAR(255) NOT NULL, - created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP -); - -INSERT INTO app_bootstrap_check (message) -VALUES ('recipe-db initialized'); +-- Intentionally left blank. +-- Prisma migrations must initialize the schema from an empty database.