This commit is contained in:
person-programmer
2025-12-02 13:27:19 +07:00
parent 461a740be0
commit 9c590d0dbf
100 changed files with 3677 additions and 119 deletions
@@ -9,15 +9,17 @@ class CreateCustomersTable extends Migration
/**
* Run the migrations.
*
* @return void
* @return void
*/
public function up()
{
Schema::create('customers', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('tipepasien');
$table->string('email')->unique();
$table->string('company');
$table->string('poliklinik');
$table->string('address');
$table->string('phone');
$table->timestamps();