Passed
Push — dev5 ( 1f3b64...3a6272 )
by Ron
06:33
created
database/migrations/2019_10_19_175205_updates_for_version_5_0.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,8 @@
 block discarded – undo
89 89
             Schema::dropIfExists('file_link_instructions');
90 90
         }
91 91
         //  Add "notes" column to the file link files table
92
-        if (!Schema::hasColumn('file_link_files', 'note')) {
92
+        if (!Schema::hasColumn('file_link_files', 'note'))
93
+        {
93 94
             Schema::table('file_link_files', function (Blueprint $table) {
94 95
                 $table->longText('note')
95 96
                     ->nullable()
Please login to merge, or discard this patch.