We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
NOT NULL
1 parent bdf0b1a commit b62574dCopy full SHA for b62574d
src/main/resources/database/migrations/09-08-2025_forms.sql
@@ -1,10 +1,10 @@
1
CREATE TABLE forms (
2
form_id BIGINT NOT NULL AUTO_INCREMENT,
3
title VARCHAR NOT NULL,
4
- submit_message VARCHAR,
+ submit_message VARCHAR DEFAULT NULL,
5
submit_channel VARCHAR NOT NULL,
6
- message_id VARCHAR,
7
- message_channel VARCHAR,
+ message_id VARCHAR DEFAULT NULL,
+ message_channel VARCHAR DEFAULT NULL,
8
expiration BIGINT NOT NULL DEFAULT -1,
9
closed BOOLEAN NOT NULL DEFAULT FALSE,
10
onetime BOOLEAN NOT NULL DEFAULT FALSE,
0 commit comments