| 12345678910111213141516171819202122232425262728 |
- <?php
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Database\Migrations\Migration;
- use Illuminate\Support\Facades\Schema;
- class CreateOwnerSundryFeeDetailsTable extends Migration
- {
- public function up()
- {
- Schema::create('owner_sundry_fee_details', function(Blueprint $table) {
- $table->increments('id');
- $table->integer('owner_id')->comment('货主ID');
- $table->integer('type')->unsigned()->comment('作业类型');
- $table->string('fee_explain')->nullable()->comment('费用描述');
- $table->string('remark')->nullable()->comment('备注');
- $table->decimal('fee')->default(0)->comment('收费金额');
- $table->integer('changable')->unsigned()->default(1)->comment('冻结状态');
- $table->softDeletes();
- $table->timestamps();
- });
- }
- public function down()
- {
- Schema::drop('owner_sundry_fee_details');
- }
- }
|