Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SQL: text field should be nullable or have default value #22

Open
julianhofmann opened this issue Nov 28, 2023 · 0 comments · Fixed by #23
Open

SQL: text field should be nullable or have default value #22

julianhofmann opened this issue Nov 28, 2023 · 0 comments · Fixed by #23

Comments

@julianhofmann
Copy link
Contributor

The fields "teaser" and "description" are configured with "NOT NULL" - without a default value. This can lead to problems if the columns are not contained in the field list during an insert.

    teaser                   text                               NOT NULL,
    description              text                               NOT NULL,
julianhofmann added a commit that referenced this issue Nov 28, 2023
The fields "teaser" and "description" were configured with "NOT NULL" - without a default value.  This could lead to problems if the columns were not contained in the field list during an insert.

Fixes: #22
mschwemer pushed a commit that referenced this issue Mar 22, 2024
The fields "teaser" and "description" were configured with "NOT NULL" - without a default value.  This could lead to problems if the columns were not contained in the field list during an insert.

Fixes: #22
(cherry picked from commit fecb1bc)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant