Skip to content

Commit

Permalink
Added a 'created_at' timestamp column to 'product_reviews' table to t…
Browse files Browse the repository at this point in the history
…rack when reviews are created. (#77)

Co-authored-by: GitHub Gen Changes <>
  • Loading branch information
ariga-bot authored Aug 8, 2024
1 parent 11407d4 commit c6f9114
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions dirs/ecommerce/migrations/20240808130858.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-- Modify "product_reviews" table
ALTER TABLE `product_reviews` ADD COLUMN `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP;
3 changes: 2 additions & 1 deletion dirs/ecommerce/migrations/atlas.sum
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
h1:luWIccvAY7xNWVYnfbb7RnEtJTviDThL+UZK3SGv8XM=
h1:806odcq2F5kkRaJYwq2nosWuoruvz8C5bYCzQRtiLuc=
20230316085611.sql h1:br6W6LPEnnsejlz/7hRm9zthwStCzjN2vZkqVPxlmvo=
20230316090502.sql h1:GfeRjkSeoCt3JVRtLQNa/r50lRfpAPXS7AqTU2ZNFgY=
20230531091333_products_categories.sql h1:59q2M59dV5dJNv4Lyb2TAJz8V6HekgkLn9z4DoL98jA=
Expand Down Expand Up @@ -32,3 +32,4 @@ h1:luWIccvAY7xNWVYnfbb7RnEtJTviDThL+UZK3SGv8XM=
20240801130915.sql h1:wqC2zDRfVQWUWiV5ItznG3xy2zN7hCr7dGLdLFYW6+c=
20240804130742.sql h1:kB1qxstPuROcCPaWyqXh0ZnjpBsOSxGRLQJTa+CP03w=
20240806130855.sql h1:rsSJMFdmgp33FVqqG5ONW+F8tv3+x1D2xEn+ATwNJw0=
20240808130858.sql h1:z1ZMAu6Olrqut5mavBk5M9CbJ0Yb7Calp9vSMyFJEvY=
3 changes: 2 additions & 1 deletion dirs/ecommerce/schema.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- Create 'users' table
-- Create 'users' table
CREATE TABLE `users` (
`id` int NOT NULL,
`user_name` varchar(255) NOT NULL,
Expand Down Expand Up @@ -47,6 +47,7 @@ CREATE TABLE `product_reviews` (
`user_id` int NOT NULL,
`rating` int NOT NULL,
`review_text` text NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
INDEX `product_id` (`product_id`),
INDEX `user_id` (`user_id`),
Expand Down

0 comments on commit c6f9114

Please sign in to comment.