diff options
author | 2020-12-19 03:43:23 +0000 | |
---|---|---|
committer | 2020-12-19 03:43:23 +0000 | |
commit | eff717bb38e5b556751ba4f23a53cc6662baa7dd (patch) | |
tree | c323fe629e765474eeb3f5ee254de50340d2fa46 /postgres | |
parent | Swap verified_at for joined_at (diff) |
Update verified_at fields to joined_at fields
Diffstat (limited to 'postgres')
-rw-r--r-- | postgres/init.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/postgres/init.sql b/postgres/init.sql index c77fec9e..740063e7 100644 --- a/postgres/init.sql +++ b/postgres/init.sql @@ -4,7 +4,7 @@ CREATE DATABASE metricity; CREATE TABLE users ( id varchar, - verified_at timestamp, + joined_at timestamp, primary key(id) ); |