| 1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Database\Migrations\Migration;
- /**
- * Class CreateInviteCodesTable.
- */
- class CreateInviteCodesTable extends Migration
- {
- /**
- * Run the migrations.
- *
- * @return void
- */
- public function up()
- {
- Schema::create('invite_codes', function (Blueprint $table) {
- $table->increments('id');
- $table->integer('code')->comment('编码');
- $table->tinyInteger('status')->default(0)->index('status')->comment('状态');
- $table->timestamps();
- });
- }
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down()
- {
- Schema::drop('invite_codes');
- }
- }
|