Skip to content

Commit

Permalink
removed the nulls from the feedback table
Browse files Browse the repository at this point in the history
  • Loading branch information
CommanderStorm committed Aug 23, 2024
1 parent 87964e1 commit 0614310
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/backend/migration/static_data/source-schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,9 @@ create table if not exists feedback
(
id int auto_increment primary key,
email_id text charset utf8 not null,
receiver text charset utf8 null,
receiver text charset utf8 not null,
reply_to text charset utf8 null,
feedback text charset utf8 null,
feedback text charset utf8 not null,
image_count int null,
latitude decimal(11, 8) null,
longitude decimal(11, 8) null,
Expand Down

0 comments on commit 0614310

Please sign in to comment.