aboutsummaryrefslogtreecommitdiffstats
path: root/atuin-server
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@elliehuxtable.com>2022-04-26 22:27:51 +0100
committerGitHub <noreply@github.com>2022-04-26 22:27:51 +0100
commit796644e24ef402f6d32927db5023851c5b31f5eb (patch)
tree36c94b9aeba455c9e17351cca6f2743d31d41c87 /atuin-server
parentSQLx cannot run this migration OK (#353) (diff)
downloadatuin-796644e24ef402f6d32927db5023851c5b31f5eb.zip
Add created_at column to users (#354)
Diffstat (limited to 'atuin-server')
-rw-r--r--atuin-server/migrations/20220426172813_user-created-at.sql1
1 files changed, 1 insertions, 0 deletions
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();