increments('id'); $table->integer('MasterId')->nullable(); $table->integer('Sequence')->nullable(); $table->string('Name', 60)->nullable(); $table->string('Code', 55)->nullable(); $table->string('Code2', 30)->nullable(); $table->integer('L2')->nullable(); $table->smallInteger('Type')->nullable(); $table->smallInteger('Attribute')->nullable(); $table->integer('Eoff')->nullable(); $table->integer('Doff')->nullable(); $table->smallInteger('CreditDays')->nullable(); $table->integer('Date_')->nullable(); $table->binary('Time_')->nullable(); $table->double('Limit2', 50)->nullable(); $table->double('Limit', 50)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('products'); } }