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_02_221229_create_ta...

38 lines
843 B
PHTML

5 years ago
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateTabungan extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('tabungan', function (Blueprint $table) {
$table->bigIncrements('id');
$table->integer('siswa_id');
$table->enum('tipe', ['in','out']);
$table->double('jumlah');
$table->double('saldo');
$table->text('keperluan')->nullable();
5 years ago
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('tabungan');
}
}