| 1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- use Illuminate\Support\Facades\Schema;
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Database\Migrations\Migration;
- class CreateLoveAppTable extends Migration
- {
- /**
- * Run the migrations.
- *
- * @return void
- */
- public function up()
- {
- Schema::create('love_app', function (Blueprint $table) {
- $table->increments('id');
- $table->string('app_id',32)->unique();
- $table->string('app_secret',32);
- $table->string('app_name',50);
- $table->string('app_desc')->nullable()->comment('描述');
- $table->timestamps();
- });
- }
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down()
- {
- Schema::dropIfExists('love_app');
- }
- }
|