summaryrefslogtreecommitdiffstats
path: root/crates/atuin-server-postgres/migrations/20220426172813_user-created-at.sql
diff options
context:
space:
mode:
Diffstat (limited to 'crates/atuin-server-postgres/migrations/20220426172813_user-created-at.sql')
-rw-r--r--crates/atuin-server-postgres/migrations/20220426172813_user-created-at.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/atuin-server-postgres/migrations/20220426172813_user-created-at.sql b/crates/atuin-server-postgres/migrations/20220426172813_user-created-at.sql
new file mode 100644
index 00000000..a9138194
--- /dev/null
+++ b/crates/atuin-server-postgres/migrations/20220426172813_user-created-at.sql
@@ -0,0 +1 @@
+alter table users add column created_at timestamp not null default now();