sqlc: remove accidental "NOT" in actions migration

This commit is contained in:
Viktor Torstensson 2026-06-08 17:18:47 +02:00
parent 29b3a9b8db
commit 8912fc6455
No known key found for this signature in database
GPG key ID: 961CC8259AE675D4

View file

@ -1,5 +1,5 @@
DROP INDEX IF NOT EXISTS actions_state_idx;
DROP INDEX IF NOT EXISTS actions_session_id_idx;
DROP INDEX IF NOT EXISTS actions_feature_name_idx;
DROP INDEX IF EXISTS actions_state_idx;
DROP INDEX IF EXISTS actions_session_id_idx;
DROP INDEX IF EXISTS actions_feature_name_idx;
DROP INDEX IF EXISTS actions_created_at_id_idx;
DROP TABLE IF EXISTS actions;