Skip to content

Commit

Permalink
fix: set nullable (#186)
Browse files Browse the repository at this point in the history
* feat: rearrange mentor application form

* fix: set nullable
  • Loading branch information
zzdhybthu authored Aug 17, 2024
1 parent 22bba25 commit 883b7e1
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
alter table "public"."mentor_info" alter column "available" set not null;
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
alter table "public"."mentor_info" alter column "available" drop not null;
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
alter table "public"."mentor_info" alter column "max_applicants" set not null;
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
alter table "public"."mentor_info" alter column "max_applicants" drop not null;
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
alter table "public"."mentor_available" alter column "max_applicant" set not null;
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
alter table "public"."mentor_available" alter column "max_applicant" drop not null;
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
alter table "public"."mentor_application" alter column "year" set not null;
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
alter table "public"."mentor_application" alter column "year" drop not null;

0 comments on commit 883b7e1

Please sign in to comment.