From cc339672b13d9a83fda4c83e7d35a0f6329f0bb1 Mon Sep 17 00:00:00 2001 From: Emi Matchu Date: Wed, 28 Feb 2024 15:53:48 -0800 Subject: [PATCH] Oops, add `AltStyle#series_name` db change to schema Did we end up behind on this migration in development? Idk! Weird! I'm doing other migration stuff now and noticing this change slipping in and I'm like. Huh! You should've already been there! --- db/schema.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/schema.rb b/db/schema.rb index d066d8d0..d7bef845 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -17,7 +17,7 @@ ActiveRecord::Schema[7.1].define(version: 2024_02_27_233743) do t.integer "body_id", null: false t.datetime "created_at", precision: nil, null: false t.datetime "updated_at", precision: nil, null: false - t.string "series_name" + t.string "series_name", default: "", null: false t.index ["color_id"], name: "index_alt_styles_on_color_id" t.index ["species_id"], name: "index_alt_styles_on_species_id" end