increments('id'); $table->char('uuid', 36)->nullable(); $table->text('note')->nullable(); $table->text('attachments')->nullable(); $table->integer('subject_id')->nullable(); $table->string('subject_type', 150)->nullable(); $table->integer('user_id')->nullable(); $table->string('user_type', 100)->nullable(); $table->text('marking', 200)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('bixo_ndoc_notes'); } }