-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
35 additions
and
4 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
src/main/resources/db/migration/num-portal/V08__user_messages.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
DROP TABLE IF EXISTS message; | ||
|
||
CREATE TABLE message( | ||
id BIGSERIAL PRIMARY KEY, | ||
title VARCHAR(255) NOT NULL, | ||
text text, | ||
start_date timestamp NOT NULL, | ||
end_date timestamp NOT NULL, | ||
type varchar(125) NOT NULL , | ||
to_delete boolean | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters