diff --git a/database/migrations/2016_09_14_145945_allow_longer_regex_field.php b/database/migrations/2016_09_14_145945_allow_longer_regex_field.php new file mode 100644 index 000000000..d8a4e8c65 --- /dev/null +++ b/database/migrations/2016_09_14_145945_allow_longer_regex_field.php @@ -0,0 +1,32 @@ +text('regex')->change(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('service_variables', function (Blueprint $table) { + $table->string('regex')->change(); + }); + } +}