increments('id'); $table->string('name', 255)->nullable(); $table->string('project_type', 100)->nullable(); $table->integer('adjustment')->nullable(); $table->integer('address_id')->nullable(); $table->integer('total')->nullable(); $table->string('status', 200)->nullable(); $table->timestamps('expire_date')->nullable(); $table->string('slug', 100)->nullable(); $table->integer('user_id')->nullable(); $table->string('upload_folder', 100)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('orders'); } }