Skip to content

Commit 6384f44

Browse files
committed
fix: change datatype from varchar to text #34
1 parent 137d9b8 commit 6384f44

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

backend/src/main/resources/db/migration/V0_0_2__role.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ CREATE SEQUENCE IF NOT EXISTS sequence_role;
22
CREATE TABLE IF NOT EXISTS role
33
(
44
id BIGINT NOT NUll PRIMARY KEY,
5-
name VARCHAR(250) NOT NULL,
5+
name TEXT NOT NULL,
66
deleted_at TIMESTAMP,
77
is_management BOOLEAN NOT NULL
88
);

0 commit comments

Comments
 (0)