This commit is contained in:
2023-12-01 11:27:01 +05:00
parent 1b7e965db1
commit 32dad6b8a7
4 changed files with 5 additions and 4 deletions

View File

@@ -11,6 +11,8 @@ return new class extends Migration
*/
public function up(): void
{
Schema::dropIfExists('loan_types');
Schema::create('loan_types', function (Blueprint $table) {
$table->id();
$table->jsonb('name');
@@ -27,6 +29,6 @@ return new class extends Migration
*/
public function down(): void
{
Schema::dropIfExists('loan_orders');
Schema::dropIfExists('loan_types');
}
};