aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/db/specific/postgresql/V1.18__increase messages and replies timestamp precision copy.sql
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2022-12-03 15:28:06 +0300
committerGravatar Vitaly Takmazov2022-12-14 12:57:52 +0300
commit0c0ea8897e64461b1cfa9cd86a939b48f0bdd640 (patch)
treef11c73b8246b0724b26ca08529c3c702e1722d79 /src/main/resources/db/specific/postgresql/V1.18__increase messages and replies timestamp precision copy.sql
parent8344ea3e3e652f5307ffb6115d6fdebf638ba098 (diff)
Initial PostgreSQL schema and profile
Diffstat (limited to 'src/main/resources/db/specific/postgresql/V1.18__increase messages and replies timestamp precision copy.sql')
-rw-r--r--src/main/resources/db/specific/postgresql/V1.18__increase messages and replies timestamp precision copy.sql3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main/resources/db/specific/postgresql/V1.18__increase messages and replies timestamp precision copy.sql b/src/main/resources/db/specific/postgresql/V1.18__increase messages and replies timestamp precision copy.sql
new file mode 100644
index 00000000..99b7f5d5
--- /dev/null
+++ b/src/main/resources/db/specific/postgresql/V1.18__increase messages and replies timestamp precision copy.sql
@@ -0,0 +1,3 @@
+ALTER TABLE users DROP COLUMN lastmessage;
+ALTER TABLE users ADD COLUMN lastmessage timestamp with time zone;
+UPDATE users SET lastmessage=last_seen;