Skip to content

Commit

Permalink
build(wise_db_init): Add user_tags color column
Browse files Browse the repository at this point in the history
  • Loading branch information
geoffreykwan committed Jun 24, 2024
1 parent dc31257 commit 4f8d23c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/resources/wise_db_init.sql
Original file line number Diff line number Diff line change
Expand Up @@ -547,6 +547,7 @@ CREATE TABLE `user_tags` (
id bigint not null auto_increment,
users_fk bigint not null,
text varchar(100) not null,
color varchar(25) DEFAULT null,
constraint user_tags_users_fk foreign key (users_fk) references users (id),
primary key (id)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
Expand Down

0 comments on commit 4f8d23c

Please sign in to comment.