From b7e0bc62004cb2aa349cdde64c8de5091541bd88 Mon Sep 17 00:00:00 2001 From: jsasg <735273025@qq.com> Date: Fri, 11 Apr 2025 17:16:50 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E4=BF=AE=E6=94=B9migration?= =?UTF-8?q?=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- database/migrations/20241220062631_create_article.php | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/database/migrations/20241220062631_create_article.php b/database/migrations/20241220062631_create_article.php index 39ba899c..c42cbac8 100644 --- a/database/migrations/20241220062631_create_article.php +++ b/database/migrations/20241220062631_create_article.php @@ -1,5 +1,6 @@ table('article', ['engine' => 'MyISAM', 'comment' => '文章表']); $table->addColumn('language_id', 'integer', ['signed' => false, 'null' => false, 'comment' => '语言ID']) ->addColumn('category_id', 'integer', ['signed' => false, 'null' => false, 'comment' => '分类ID']) - ->addColumn('title', 'string', ['limit' => 64, 'null' => false, 'comment' => '标题']) + ->addColumn('title', 'string', ['limit' => 128, 'null' => false, 'comment' => '标题']) ->addColumn('author', 'string', ['limit' => 64, 'null' => true, 'default' => null, 'comment' => '作者']) ->addColumn('source', 'string', ['limit' => 64, 'null' => true, 'default' => null, 'comment' => '来源']) ->addColumn('image', 'string', ['limit' => 125, 'null' => true, 'default' => null, 'comment' => '封面图片']) - ->addColumn('desc', 'string', ['limit' => 255, 'null' => true, 'default' => null, 'comment' => '描述信息']) + ->addColumn('desc', 'string', ['limit' => 512, 'null' => true, 'default' => null, 'comment' => '描述信息']) ->addColumn('recommend', 'boolean', ['null' => false, 'default' => 0, 'comment' => '是否推荐:1是,0否']) ->addColumn('sort', 'integer', ['null' => false, 'default' => 0, 'comment' => '排序']) ->addColumn('link', 'string', ['limit' => 255, 'null' => true, 'default' => null, 'comment' => '外链']) - ->addColumn('content', 'text', ['null' => true, 'default' => null, 'comment' => '内容']) + ->addColumn('content', MysqlAdapter::TEXT_LONG, ['null' => true, 'default' => null, 'comment' => '内容']) ->addColumn('view_count', 'integer', ['null' => false, 'default' => 0, 'comment' => '浏览量']) ->addColumn('praise_count', 'integer', ['null' => false, 'default' => 0, 'comment' => '点赞量']) ->addColumn('seo_title', 'string', ['limit' => 255, 'null' => true, 'default' => null, 'comment' => 'SEO标题']) - ->addColumn('seo_keywords', 'string', ['limit' => 255, 'null' => true, 'default' => null, 'comment' => 'SEO关键字']) - ->addColumn('seo_desc', 'string', ['limit' => 255, 'null' => true, 'default' => null, 'comment' => 'SEO描述']) + ->addColumn('seo_keywords', 'string', ['limit' => 512, 'null' => true, 'default' => null, 'comment' => 'SEO关键字']) + ->addColumn('seo_desc', 'string', ['limit' => 512, 'null' => true, 'default' => null, 'comment' => 'SEO描述']) ->addColumn('enabled', 'boolean', ['null' => false, 'default' => 1, 'comment' => '是否启用:1是,-1否']) ->addColumn('release_time', 'datetime', ['null' => true, 'default' => null, 'comment' => '发布时间']) ->addColumn('created_at', 'timestamp', ['null' => false, 'default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间'])