increments('id'); $table->bigInteger('user_id')->nullable(); $table->text('file')->nullable(); $table->string('module', 100)->nullable(); $table->string('signed_url', 200)->nullable(); $table->enum('status', ['Yes', 'No'])->nullable(); $table->timestamp('downloaded_at')->nullable(); $table->integer('downloaded_by')->nullable(); $table->text('marking', 200)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('bixo_download_downloads'); } }