aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/db/migration/V1.18__increase messages and replies timestamp precision.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/migration/V1.18__increase messages and replies timestamp precision.sql
parent8344ea3e3e652f5307ffb6115d6fdebf638ba098 (diff)
Initial PostgreSQL schema and profile
Diffstat (limited to 'src/main/resources/db/migration/V1.18__increase messages and replies timestamp precision.sql')
-rw-r--r--src/main/resources/db/migration/V1.18__increase messages and replies timestamp precision.sql5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/main/resources/db/migration/V1.18__increase messages and replies timestamp precision.sql b/src/main/resources/db/migration/V1.18__increase messages and replies timestamp precision.sql
deleted file mode 100644
index 5b298c46..00000000
--- a/src/main/resources/db/migration/V1.18__increase messages and replies timestamp precision.sql
+++ /dev/null
@@ -1,5 +0,0 @@
-ALTER TABLE replies MODIFY COLUMN ts timestamp(6) NOT NULL DEFAULT CURRENT_TIMESTAMP;
-ALTER TABLE messages MODIFY COLUMN ts timestamp(6) NOT NULL DEFAULT CURRENT_TIMESTAMP;
-ALTER TABLE messages MODIFY COLUMN updated timestamp(6) NOT NULL DEFAULT CURRENT_TIMESTAMP;
-ALTER TABLE messages_txt MODIFY COLUMN updated_at timestamp(6) NOT NULL DEFAULT CURRENT_TIMESTAMP;
-ALTER TABLE users MODIFY COLUMN lastmessage timestamp(6) NOT NULL DEFAULT CURRENT_TIMESTAMP;