increments('id'); $table->string('name', 200)->nullable(); $table->string('contact_person', 100)->nullable(); $table->string('email', 50)->nullable(); $table->string('phone', 50)->nullable(); $table->string('fax', 50)->nullable(); $table->string('website', 50)->nullable(); $table->text('address')->nullable(); $table->tinyInteger('status')->nullable(); $table->text('services')->nullable(); $table->text('notes')->nullable(); $table->string('slug', 200)->nullable(); $table->integer('user_id')->nullable(); $table->string('user_type', 50)->nullable(); $table->text('marking', 200)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('litecms_maintenance_vendors'); } }