Browse Source

no message

kuaifan 5 năm trước cách đây
mục cha
commit
55b3186026

+ 0 - 33
database/migrations/2020_06_05_165357_create_pre_migrations_table.php

@@ -1,33 +0,0 @@
-<?php
-
-use Illuminate\Database\Migrations\Migration;
-use Illuminate\Database\Schema\Blueprint;
-use Illuminate\Support\Facades\Schema;
-
-class CreatePreMigrationsTable extends Migration
-{
-	/**
-	 * Run the migrations.
-	 *
-	 * @return void
-	 */
-	public function up()
-	{
-		Schema::create('migrations', function(Blueprint $table)
-		{
-			$table->increments('id');
-			$table->string('migration');
-			$table->integer('batch');
-		});
-	}
-
-	/**
-	 * Reverse the migrations.
-	 *
-	 * @return void
-	 */
-	public function down()
-	{
-		Schema::drop('migrations');
-	}
-}