id(); $table->string('nomor_rekening'); $table->string('jenis_fasilitas'); $table->string('saldo'); $table->string('start_date'); $table->string('due_date'); $table->string('jangka_waktu'); $table->string('fixed_rate'); $table->string('keterangan'); $table->string('status', 1)->default('1'); $table->timestamps(); $table->softDeletes(); $table->unsignedBigInteger("created_by")->nullable(); $table->unsignedBigInteger("updated_by")->nullable(); $table->unsignedBigInteger("deleted_by")->nullable(); }); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('fasilitas'); } };