diff options
| author | Ellie Huxtable <ellie@elliehuxtable.com> | 2022-04-26 22:27:51 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-26 22:27:51 +0100 |
| commit | 796644e24ef402f6d32927db5023851c5b31f5eb (patch) | |
| tree | 36c94b9aeba455c9e17351cca6f2743d31d41c87 | |
| parent | SQLx cannot run this migration OK (#353) (diff) | |
| download | atuin-796644e24ef402f6d32927db5023851c5b31f5eb.zip | |
Add created_at column to users (#354)
| -rw-r--r-- | atuin-server/migrations/20220426172813_user-created-at.sql | 1 |
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(); |
