Skip to content

Commit

Permalink
fix migration
Browse files Browse the repository at this point in the history
  • Loading branch information
themsaid committed Nov 16, 2018
1 parent d95d477 commit 8ae48a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Migrations/2018_11_16_000000_add_meta_fields.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public function up()
$table->text('meta')->nullable();
});

Schema::table('wink_tags', function (Blueprint $table) {
Schema::table('wink_posts', function (Blueprint $table) {
$table->text('meta')->nullable();
});
}
Expand All @@ -49,7 +49,7 @@ public function down()
$table->dropColumn('meta')->nullable();
});

Schema::table('wink_tags', function (Blueprint $table) {
Schema::table('wink_posts', function (Blueprint $table) {
$table->dropColumn('meta')->nullable();
});
}
Expand Down

0 comments on commit 8ae48a9

Please sign in to comment.