akaunting/database/migrations/2018_11_05_000000_add_tax_columns.php
2018-11-06 17:55:31 +03:00

33 lines
571 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
class AddTaxColumns extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('taxes', function ($table) {
$table->string('type')->default('normal');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('taxes', function ($table) {
$table->dropColumn([
'type',
]);
});
}
}