ctrlpanel/database/migrations/2021_05_09_153742_add_display_to_credit_products_table.php
2021-12-14 15:47:50 +01:00

33 lines
664 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddDisplayToCreditProductsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('credit_products', function (Blueprint $table) {
$table->string('display');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('credit_products', function (Blueprint $table) {
$table->dropColumn('display');
});
}
}