diff --git a/database/migrations/2016_09_12_121359_fix_nullables.php b/database/migrations/2016_09_12_121359_fix_nullables.php new file mode 100644 index 0000000000..cb51287c9f --- /dev/null +++ b/database/migrations/2016_09_12_121359_fix_nullables.php @@ -0,0 +1,39 @@ +text('description')->nullable()->change(); + } + ); + + Schema::table( + 'rules', function (Blueprint $table) + { + $table->text('description')->nullable()->change(); + } + ); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + + } +}