From edc27740c0fec4e8daaabbabe0479c1efc191316 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Wed, 10 Jun 2026 22:34:34 +0200 Subject: chore: Remove more (kinda) useless stuff --- .../atuin-kv/migrations/20250501160746_create_kv_db.up.sql | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 crates/atuin-kv/migrations/20250501160746_create_kv_db.up.sql (limited to 'crates/atuin-kv/migrations/20250501160746_create_kv_db.up.sql') diff --git a/crates/atuin-kv/migrations/20250501160746_create_kv_db.up.sql b/crates/atuin-kv/migrations/20250501160746_create_kv_db.up.sql deleted file mode 100644 index 77384044..00000000 --- a/crates/atuin-kv/migrations/20250501160746_create_kv_db.up.sql +++ /dev/null @@ -1,12 +0,0 @@ --- Add up migration script here -CREATE TABLE - kv ( - namespace TEXT NOT NULL, - key TEXT NOT NULL, - value TEXT NOT NULL, - inserted_at INTEGER NOT NULL DEFAULT (strftime ('%s', 'now')) - ); - -CREATE INDEX idx_kv_namespace ON kv (namespace); - -CREATE UNIQUE INDEX idx_kv ON kv (namespace, key); -- cgit v1.3.1