5 lines
165 B
SQL
5 lines
165 B
SQL
-- P5-5700 add inserted date to collection products table
|
|
|
|
alter table collections_products
|
|
add column inserted timestamp with time zone NOT NULL DEFAULT now();
|