diff options
Diffstat (limited to 'src/main/resources/db/migration/V1.1__Add updated_at field.sql')
-rw-r--r-- | src/main/resources/db/migration/V1.1__Add updated_at field.sql | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/resources/db/migration/V1.1__Add updated_at field.sql b/src/main/resources/db/migration/V1.1__Add updated_at field.sql new file mode 100644 index 00000000..dac179b1 --- /dev/null +++ b/src/main/resources/db/migration/V1.1__Add updated_at field.sql @@ -0,0 +1,2 @@ +ALTER TABLE messages_txt ADD COLUMN updated_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP; +ALTER TABLE replies ADD COLUMN updated_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP; |