From 878327ccd0de1794ca5d19f82ef53687b7e19160 Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Sat, 5 Oct 2024 09:24:51 +0300 Subject: db: Add `created_at` field to `emails` table --- src/main/resources/db/migration/V1.50__email_created_at.sql | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/main/resources/db/migration/V1.50__email_created_at.sql (limited to 'src/main/resources/db') diff --git a/src/main/resources/db/migration/V1.50__email_created_at.sql b/src/main/resources/db/migration/V1.50__email_created_at.sql new file mode 100644 index 00000000..aa5b3f4b --- /dev/null +++ b/src/main/resources/db/migration/V1.50__email_created_at.sql @@ -0,0 +1 @@ +ALTER TABLE emails ADD COLUMN created_at timestamp with time zone NOT NULL DEFAULT CURRENT_TIMESTAMP -- cgit v1.2.3