We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bea790d commit 00a3ae9Copy full SHA for 00a3ae9
database/migrations/2016_09_14_145945_allow_longer_regex_field.php
@@ -0,0 +1,32 @@
1
+<?php
2
+
3
+use Illuminate\Support\Facades\Schema;
4
+use Illuminate\Database\Schema\Blueprint;
5
+use Illuminate\Database\Migrations\Migration;
6
7
+class AllowLongerRegexField extends Migration
8
+{
9
+ /**
10
+ * Run the migrations.
11
+ *
12
+ * @return void
13
+ */
14
+ public function up()
15
+ {
16
+ Schema::table('service_variables', function (Blueprint $table) {
17
+ $table->text('regex')->change();
18
+ });
19
+ }
20
21
22
+ * Reverse the migrations.
23
24
25
26
+ public function down()
27
28
29
+ $table->string('regex')->change();
30
31
32
+}
0 commit comments