| 1234567891011121314151617181920212223242526272829 |
- <?php
- use App\Authority;
- use Illuminate\Database\Migrations\Migration;
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Support\Facades\Schema;
- class AddRejectedsAuthorities extends Migration
- {
- /**
- * Run the migrations.
- *
- * @return void
- */
- public function up()
- {
- (new Authority(['name'=>'退货管理-编辑备注','alias_name'=>'退货管理-编辑备注']))->save();
- }
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down()
- {
- Authority::where('name','退货管理-编辑备注')->delete();
- }
- }
|