Skip to content

Commit

Permalink
refactor UnlockedLabs#233: code clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
chrissantillan committed Apr 30, 2024
1 parent 74c5d5b commit 127693c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 31 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public function up(): void
public function down(): void
{
Schema::table('enrollments', function (Blueprint $table) {
$table->enum('enrollment_state', EnrollmentState::toArray());
$table->enum('enrollment_state', EnrollmentState::toArray())->nullable();
});
}
};

0 comments on commit 127693c

Please sign in to comment.