Template
init
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user