Advertisement
fadlyshafa

Untitled

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