diff --git a/database/migrations/2021_06_16_100431_change_label_document_references.php b/database/migrations/2021_06_16_100431_change_label_document_references.php new file mode 100644 index 0000000..c369847 --- /dev/null +++ b/database/migrations/2021_06_16_100431_change_label_document_references.php @@ -0,0 +1,32 @@ +string('label', 255)->change(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('document_references', function (Blueprint $table) { + $table->string('label', 50)->change(); + }); + } +}