Skip to content

Commit

Permalink
release: 0.4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
devxb committed Feb 12, 2024
1 parent 3652a80 commit 914b670
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
alter table alert drop column created_at;
alter table alert drop column updated_at;
alter table alert add column created_at datetime not null;
alter table alert add column updated_at datetime not null;
4 changes: 2 additions & 2 deletions src/test/resources/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ create table if not exists alert(
title text not null,
`body` text not null,
type enum('BEFORE_MEETING'),
created_at timestamp(6) not null,
updated_at timestamp(6) not null,
created_at datetime not null,
updated_at datetime not null,
is_read boolean not null,
primary key (id)
);
Expand Down

0 comments on commit 914b670

Please sign in to comment.