id(); $table->string('action_handler_class'); $table->enum('type', [ 'before', 'after' ])->nullable(); $table->integer('priority'); $table->unsignedBigInteger('source_id'); $table->foreign('source_id') ->references('id') ->on('sources'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('actions'); } }