fadlyshafa

Untitled

Nov 10th, 2019
355
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. ....
  2. public function up()
  3.     {
  4.         Schema::create('m_supplier', function (Blueprint $table) {
  5.             $table->string('id',40);
  6.             $table->string('nama',115);
  7.             $table->timestamps();
  8.  
  9.             $table->primary('id');
  10.             $table->engine = 'InnoDB';
  11.         });
  12.     }
  13. ....
Advertisement
Add Comment
Please, Sign In to add comment