Applies Changes

This commit is contained in:
Berkay Güre
2018-07-15 15:07:56 +03:00
committed by Berkay Güre
parent c39b9870ef
commit 253f0f1451
14 changed files with 47 additions and 62 deletions
@@ -26,21 +26,13 @@ class AddCurrencyColumns extends Migration
* @return void
*/
public function down()
{
Schema::table('currencies', function ($table) {
$table->dropColumn('precision');
});
{
Schema::table('currencies', function ($table) {
$table->dropColumn('precision');
$table->dropColumn('symbol');
});
Schema::table('currencies', function ($table) {
$table->dropColumn('symbol_first');
});
Schema::table('currencies', function ($table) {
$table->dropColumn('decimal_mark');
});
Schema::table('currencies', function ($table) {
$table->dropColumn('thousands_separator');
});
}
}
}