engine = 'InnoDB'; $table->increments('id'); $table->string('class_name')->nullable(); $table->mediumText('config_data')->nullable(); $table->integer('rule_host_id')->unsigned()->nullable()->index(); $table->timestamps(); }); } public function down() { Schema::dropIfExists('rainlab_notify_rule_actions'); } }