increments('id'); $table->string('slug', 60)->nullable(); $table->string('name', 200)->nullable(); $table->text('files')->nullable(); $table->string('link', 255)->nullable(); $table->integer('user_id')->nullable(); $table->string('user_type', 60)->nullable(); $table->text('marking', 200)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('crm_school_downloads'); } }