table('category') ->setComment('分类表') ->addColumn(ColumnFormat::stringNormal('title')) ->addColumn(ColumnFormat::timestamp('create_time')) ->addColumn(ColumnFormat::timestamp('update_time')) ->addColumn(ColumnFormat::timestamp('delete_time')) ->addColumn(ColumnFormat::integer('pid')->setComment('上级id')) ->addColumn(ColumnFormat::integer('sort')->setComment('排序:越小越靠前')) ->addColumn(ColumnFormat::integer('level')->setDefault(1)->setComment('层级')) ->addColumn(ColumnFormat::stringShort('tpl_name')->setComment('模板名称')) ->addColumn(ColumnFormat::stringUrl('title_img')->setComment('附图')) ->addColumn(ColumnFormat::stringLong('desc')->setComment('副标题描述')) ->addColumn(ColumnFormat::integerTypeStatus('status')->setComment('0:不显示,1:显示')) ->addColumn(ColumnFormat::stringShort('type')->setComment('类型,1:文章,有分类有标签,2:页面,无分类无标签,N:其他形式用,用于区分不同的用途')) ->addIndex('type') ->addIndex('pid') ->addIndex('status') ->addIndex('delete_time') ->create(); } }