Skip to content

Commit 2f1ad5f

Browse files
authored
Categories migrations (#2966)
Signed-off-by: Gašper Grom <[email protected]>
1 parent c75220d commit 2f1ad5f

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
-- Drop the column categoryId from the collections table
2+
ALTER TABLE collections
3+
DROP COLUMN categoryId;
4+
5+
-- Drop the categories table
6+
DROP TABLE IF EXISTS categories;
7+
8+
-- Drop the categoryGroups table
9+
DROP TABLE IF EXISTS categoryGroups;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
-- Create the categoryGroups table
2+
CREATE TABLE IF NOT EXISTS "categoryGroups"
3+
(
4+
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
5+
name VARCHAR(255) NOT NULL,
6+
slug VARCHAR(255) NOT NULL UNIQUE,
7+
type TEXT CHECK (type IN ('vertical', 'horizontal')) NOT NULL,
8+
"createdAt" TIMESTAMP WITH TIME ZONE DEFAULT CURRENT_TIMESTAMP,
9+
"updatedAt" TIMESTAMP WITH TIME ZONE DEFAULT CURRENT_TIMESTAMP
10+
);
11+
12+
-- Create the categories table
13+
CREATE TABLE IF NOT EXISTS "categories"
14+
(
15+
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
16+
name VARCHAR(255) NOT NULL,
17+
slug VARCHAR(255) NOT NULL UNIQUE,
18+
"categoryGroupId" UUID NOT NULL REFERENCES "categoryGroups"(id) ON UPDATE CASCADE ON DELETE CASCADE,
19+
"createdAt" TIMESTAMP WITH TIME ZONE DEFAULT CURRENT_TIMESTAMP,
20+
"updatedAt" TIMESTAMP WITH TIME ZONE DEFAULT CURRENT_TIMESTAMP
21+
);
22+
23+
-- Add the categoryId column to the collections table
24+
ALTER TABLE collections
25+
ADD COLUMN "categoryId" UUID REFERENCES "categories"(id) ON UPDATE CASCADE ON DELETE SET NULL;

0 commit comments

Comments
 (0)