From bbacaabc51df559653a0b813b76b7bc5eae6743f Mon Sep 17 00:00:00 2001 From: Jeremy Wall Date: Tue, 9 Jul 2024 18:56:57 -0500 Subject: [PATCH] fix: wrong type hint for sqlite column --- kitchen/migrations/20240701002811_recipe-servings.up.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitchen/migrations/20240701002811_recipe-servings.up.sql b/kitchen/migrations/20240701002811_recipe-servings.up.sql index e1e3920..cc590b6 100644 --- a/kitchen/migrations/20240701002811_recipe-servings.up.sql +++ b/kitchen/migrations/20240701002811_recipe-servings.up.sql @@ -1,2 +1,2 @@ -- Add up migration script here -ALTER TABLE recipes ADD column serving_count number; +ALTER TABLE recipes ADD COLUMN serving_count NUMERIC;