aboutsummaryrefslogtreecommitdiffstats
path: root/atuin-client/record-migrations
diff options
context:
space:
mode:
Diffstat (limited to 'atuin-client/record-migrations')
-rw-r--r--atuin-client/record-migrations/20230531212437_create-records.sql3
-rw-r--r--atuin-client/record-migrations/20230619235421_add_content_encrytion_key.sql3
2 files changed, 2 insertions, 4 deletions
diff --git a/atuin-client/record-migrations/20230531212437_create-records.sql b/atuin-client/record-migrations/20230531212437_create-records.sql
index 46963358..4f4b304a 100644
--- a/atuin-client/record-migrations/20230531212437_create-records.sql
+++ b/atuin-client/record-migrations/20230531212437_create-records.sql
@@ -7,7 +7,8 @@ create table if not exists records (
timestamp integer not null,
tag text not null,
version text not null,
- data blob not null
+ data blob not null,
+ cek blob not null
);
create index host_idx on records (host);
diff --git a/atuin-client/record-migrations/20230619235421_add_content_encrytion_key.sql b/atuin-client/record-migrations/20230619235421_add_content_encrytion_key.sql
deleted file mode 100644
index 86bf6844..00000000
--- a/atuin-client/record-migrations/20230619235421_add_content_encrytion_key.sql
+++ /dev/null
@@ -1,3 +0,0 @@
--- store content encryption keys in the record
-alter table records
- add column cek text;