Current File : /home/masbinta/public_html/database/migrations/2021_06_13_080135_create_payment_gateweys_table.php |
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreatePaymentGateweysTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('payment_gateweys', function (Blueprint $table) {
$table->id();
$table->string('title')->nullable();
$table->string('image')->nullable();
$table->string('name')->nullable();
$table->string('type')->nullable();
$table->text('information')->nullable();
$table->string('keyword')->nullable();
$table->tinyInteger('status')->default(1);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('payment_gateweys');
}
}