increments('id'); $table->integer('industry_id')->nullable(); $table->string('name', 255)->nullable(); $table->string('email', 255)->nullable(); $table->string('phone', 255)->nullable(); $table->string('website', 255)->nullable(); $table->string('address', 255)->nullable(); $table->string('country', 255)->nullable(); $table->string('state', 255)->nullable(); $table->string('city', 255)->nullable(); $table->string('street', 255)->nullable(); $table->integer('zip_code')->nullable(); $table->text('details')->nullable(); $table->text('logo')->nullable(); $table->text('status')->nullable(); $table->text('featured')->nullable(); $table->string('facebook', 255)->nullable(); $table->string('twitter', 255)->nullable(); $table->string('linkedin', 255)->nullable(); $table->string('instagram', 255)->nullable(); $table->string('current_employee', 255)->nullable(); $table->string('google', 255)->nullable(); $table->string('slug', 200)->nullable(); $table->integer('user_id')->nullable(); $table->string('user_type', 50)->nullable(); $table->string('upload_folder', 100)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('companies'); } }