Fixed table migration, created api tests, created test env, added data import
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user