mirror of
https://github.com/lightninglabs/lightning-terminal.git
synced 2026-08-16 13:01:14 +02:00
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.
5 lines
No EOL
222 B
SQL
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; |