Commit 6106797a by Aan Choesni Herlingga

bug fix migration informations en

parent 094b4d54
...@@ -13,7 +13,7 @@ class CreateInformationsEnTable extends Migration ...@@ -13,7 +13,7 @@ class CreateInformationsEnTable extends Migration
*/ */
public function up() public function up()
{ {
Schema::table('swp_informations_en', function (Blueprint $table) { Schema::create('swp_informations_en', function (Blueprint $table) {
$table->string('id', 36)->primary(); $table->string('id', 36)->primary();
$table->string('information_id', 36); $table->string('information_id', 36);
$table->string('title'); $table->string('title');
...@@ -30,8 +30,6 @@ class CreateInformationsEnTable extends Migration ...@@ -30,8 +30,6 @@ class CreateInformationsEnTable extends Migration
*/ */
public function down() public function down()
{ {
Schema::table('swp_informations_en', function (Blueprint $table) { Schema::dropIfExists('swp_informations_en');
//
});
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment