table('article_cates')->drop()->save(); $this->table('article_cates', ['comment' => '文章分类表']) ->addColumn('title', 'string', ['limit' => 50, 'null' => false, 'comment' => '分类名称']) ->addColumn('sort', 'integer', ['default' => 0, 'null' => false, 'comment' => '排序']) ->addColumn('status', 'boolean', ['default' => 1, 'null' => false, 'comment' => '状态 1:启用 0:禁用']) ->addColumn('create_time', 'integer', ['null' => true, 'comment' => '创建时间']) ->addColumn('update_time', 'integer', ['null' => true, 'comment' => '更新时间']) ->addIndex(['title'], ['unique' => true, 'name' => 'idx_title']) ->addIndex(['status','sort'], ['name' => 'idx_status_sort']) ->addIndex(['create_time','sort'], ['name' => 'idx_create_time_sort']) ->save(); } }