You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
spp-paud/database/migrations/2019_06_09_200335_create_ku...

36 lines
741 B
PHTML

5 years ago
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateKuitansi extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('kuitansi', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('invoice');
$table->string('items');
$table->double('total');
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('kuitansi');
}
}