diff --git a/migrations/2024_05_23_000001_extensions_remove_codesign.php b/migrations/2024_05_23_000001_extensions_remove_codesign.php new file mode 100644 index 0000000..06c749b --- /dev/null +++ b/migrations/2024_05_23_000001_extensions_remove_codesign.php @@ -0,0 +1,25 @@ +hasColumn($this->tableName, 'codesign')){ + $capsule::schema()->table($this->tableName, function (Blueprint $table) { + $table->dropColumn('codesign'); + }); + } + } + + public function down() + { + // No going back + } +} \ No newline at end of file