Advertisement
fadlyshafa

Untitled

May 23rd, 2020
1,580
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.48 KB | None | 0 0
  1. ....
  2. public function up()
  3.     {
  4.         Schema::create('customers', function (Blueprint $table) {
  5.             $table->increments('id');
  6.             $table->string('nama',115);
  7.             $table->string('no_telp',25);
  8.             $table->string('email',40);
  9.             $table->text('alamat');
  10.             $table->text('photo_profile');
  11.             $table->text('photo_ktp');
  12.             $table->timestamps();
  13.  
  14.             $table->engine = 'InnoDB';
  15.         });
  16.     }
  17. ....
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement