weizong song 3 years ago
parent 519a751a05
commit f8f58e4768

BIN
.DS_Store vendored

Binary file not shown.

BIN
app/.DS_Store vendored

Binary file not shown.

BIN
bootstrap/.DS_Store vendored

Binary file not shown.

@ -27,7 +27,6 @@
"zircote/swagger-php": "^3.0"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^2.6",
"facade/ignition": "^2.0",
"fzaninotto/faker": "^1.9.1",
"mockery/mockery": "^1.3.1",

1022
composer.lock generated

File diff suppressed because it is too large Load Diff

BIN
database/.DS_Store vendored

Binary file not shown.

@ -0,0 +1,30 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class UpdateManagersAddOrderStatusAbility extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table("managers", function (Blueprint $table) {
$table->tinyInteger("order_status_ability")->default(1)->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}

BIN
public/.DS_Store vendored

Binary file not shown.

BIN
resources/.DS_Store vendored

Binary file not shown.

BIN
tests/.DS_Store vendored

Binary file not shown.
Loading…
Cancel
Save