increments('id'); $table->integer('company_id')->nullable(); $table->string('batch_id', 255)->nullable(); $table->integer('subscription_id')->nullable(); $table->string('module', 100)->nullable(); $table->string('type', 60)->nullable(); $table->enum('status', ['Yes', 'No'])->nullable(); $table->text('file')->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('assetise_scheduler_schedulers'); } }