increments('id'); $table->string('action', 100)->nullable(); $table->string('description', 100)->nullable(); $table->integer('subject_id')->nullable(); $table->string('subject_type', 100)->nullable(); $table->integer('causer_id')->nullable(); $table->string('causer_type', 100)->nullable(); $table->string('transition', 30)->nullable(); $table->time('duration')->nullable(); $table->text('properties')->nullable(); $table->text('marking', 200)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('litepie_log_actions'); } }