summaryrefslogtreecommitdiffstats
path: root/atuin-client/migrations
diff options
context:
space:
mode:
authorEllie Huxtable <e@elm.sh>2021-04-25 21:27:51 +0100
committerEllie Huxtable <e@elm.sh>2021-04-25 21:27:51 +0100
commit4f16e8411e24891b140690798c47747f5c9bb91e (patch)
tree56db5166f3eb81df78f3654162e01d73eed6eba0 /atuin-client/migrations
parent156893d774b4da5b541fdbb08428f9ec392949a0 (diff)
Revert to storing history as nanos
Diffstat (limited to 'atuin-client/migrations')
-rw-r--r--atuin-client/migrations/20210422143411_create_history.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/atuin-client/migrations/20210422143411_create_history.sql b/atuin-client/migrations/20210422143411_create_history.sql
index 23c63a4f4..1f3f86861 100644
--- a/atuin-client/migrations/20210422143411_create_history.sql
+++ b/atuin-client/migrations/20210422143411_create_history.sql
@@ -1,7 +1,7 @@
-- Add migration script here
create table if not exists history (
id text primary key,
- timestamp text not null,
+ timestamp integer not null,
duration integer not null,
exit integer not null,
command text not null,