Fixed table migration, created api tests, created test env, added data import

This commit is contained in:
Gregorio Chiko Putra
2019-05-10 10:00:11 +07:00
parent e328b2ec1d
commit 019ac42b65
7 changed files with 487 additions and 23 deletions

View File

@@ -15,11 +15,16 @@ class CreateSiswasTable extends Migration
{
Schema::create('siswas', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('nama');
$table->string('nis');
$table->string('nisn');
$table->string('kelas');
$table->string('nopes');
$table->string('nama');
$table->string('tempat_lahir');
$table->date('tanggal_lahir');
$table->string('kelas');
$table->string('bsk');
$table->string('psk');
$table->string('kk');
$table->boolean('lulus');
$table->timestamps();
$table->softDeletes();