From 9fd0a1c333a96dfc95146ed777bb2fed2c6e36c6 Mon Sep 17 00:00:00 2001 From: Martin Carlsson Date: Wed, 26 Aug 2020 15:04:53 +0200 Subject: [PATCH] P5-5700 add inserted date column to collection_products --- migrations/000.229.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 migrations/000.229.sql diff --git a/migrations/000.229.sql b/migrations/000.229.sql new file mode 100644 index 0000000..bbccfa8 --- /dev/null +++ b/migrations/000.229.sql @@ -0,0 +1,4 @@ +-- P5-5700 add inserted date to collection products table + +alter table collections_products + add column inserted timestamp with time zone NOT NULL DEFAULT now();