From 796644e24ef402f6d32927db5023851c5b31f5eb Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Tue, 26 Apr 2022 22:27:51 +0100 Subject: [PATCH] Add created_at column to users (#354) --- atuin-server/migrations/20220426172813_user-created-at.sql | 1 + 1 file changed, 1 insertion(+) create mode 100644 atuin-server/migrations/20220426172813_user-created-at.sql diff --git a/atuin-server/migrations/20220426172813_user-created-at.sql b/atuin-server/migrations/20220426172813_user-created-at.sql new file mode 100644 index 00000000..a9138194 --- /dev/null +++ b/atuin-server/migrations/20220426172813_user-created-at.sql @@ -0,0 +1 @@ +alter table users add column created_at timestamp not null default now();