diff --git a/app/Models/Supplier.php b/app/Models/Supplier.php index 230a713cda..b904f88340 100755 --- a/app/Models/Supplier.php +++ b/app/Models/Supplier.php @@ -14,8 +14,8 @@ class Supplier extends SnipeModel protected $rules = array( 'name' => 'required|min:1|max:255|unique_undeleted', - 'address' => 'max:50|nullable', - 'address2' => 'max:50|nullable', + 'address' => 'max:250|nullable', + 'address2' => 'max:250|nullable', 'city' => 'max:255|nullable', 'state' => 'max:32|nullable', 'country' => 'max:3|nullable', diff --git a/database/migrations/2021_12_27_151849_change_supplier_address_length.php b/database/migrations/2021_12_27_151849_change_supplier_address_length.php new file mode 100644 index 0000000000..db31b9b3ac --- /dev/null +++ b/database/migrations/2021_12_27_151849_change_supplier_address_length.php @@ -0,0 +1,36 @@ +string('address', 250)->nullable()->change(); + $table->string('address2', 250)->nullable()->change(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::table('suppliers', function (Blueprint $table) { + // + $table->text('address', 50)->nullable()->default(null)->change(); + $table->text('address2', 50)->nullable()->default(null)->change(); + }); + } +}