lightning-terminal/db/sqlc/migrations/000005_actions.down.sql
Elle Mouton 65e4309f9c
db: add actions schemas and queries
In this commit we define the schema for the `actions` table along with
various queries we will need for interacting with the table. NOTE: we
will also add some of our own queries manually in commits to follow.
2025-05-29 07:04:40 +02:00

5 lines
No EOL
222 B
SQL

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 NOT EXISTS actions_created_at_idx;
DROP TABLE IF EXISTS actions;