| 1234567891011121314151617181920212223242526272829303132333435363738 | <?phpuse Illuminate\Support\Facades\Schema;use Illuminate\Database\Schema\Blueprint;use Illuminate\Database\Migrations\Migration;class CreateOauthsTable extends Migration{    /**     * Run the migrations.     *     * @return void     */    public function up()    {        Schema::create('oauths', function (Blueprint $table) {            $table->increments('id');            $table->string('name')->comment('名称');            $table->string('alias')->unique()->comment('别名');            $table->integer('order')->index()->comment('排序');            $table->string('app_id')->comment('appid');            $table->string('app_key')->comment('appkey');            $table->integer('status')->index()->default('1')->comment('状态(1:开启 0 关闭)');            $table->timestamps();            $table->softDeletes();        });    }    /**     * Reverse the migrations.     *     * @return void     */    public function down()    {        Schema::dropIfExists('oauths');    }}
 |