| 1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Database\Migrations\Migration;
- /**
- * Class CreateAgencySetsTable.
- */
- class CreateAgencySetsTable extends Migration
- {
- /**
- * Run the migrations.
- *
- * @return void
- */
- public function up()
- {
- Schema::create('agency_sets', function(Blueprint $table) {
- $table->increments('id');
- $table->integer('agency_num')->comment('代理人数限制');
- $table->text('content')->comment('代理内容说明');
- $table->timestamps();
- });
- }
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down()
- {
- Schema::drop('agency_sets');
- }
- }
|