From 8665f9e6ce20fb7df0239a894d275581bde86b81 Mon Sep 17 00:00:00 2001 From: linyaostalker <602604991@qq.com> Date: Tue, 19 Nov 2019 10:28:55 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9C=A8vendor/antgoods=E5=88=9B=E5=BB=BAant?= =?UTF-8?q?=E5=95=86=E5=93=81=E6=A8=A1=E5=9D=97=E5=90=8E=E5=8F=B0=E5=95=86?= =?UTF-8?q?=E5=93=81=E7=B1=BB=E5=88=AB=E8=A1=A8=E6=95=B0=E6=8D=AE=E8=BF=81?= =?UTF-8?q?=E7=A7=BB=E6=96=87=E4=BB=B6,=E5=9C=A8console/migrate=E5=88=A0?= =?UTF-8?q?=E9=99=A4=E5=90=8E=E5=8F=B0=E5=95=86=E5=93=81=E7=B1=BB=E5=88=AB?= =?UTF-8?q?=E8=A1=A8=E6=95=B0=E6=8D=AE=E8=BF=81=E7=A7=BB=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../m191111_081842_create_table_category.php | 39 ------------------- 1 file changed, 39 deletions(-) delete mode 100644 console/migrations/m191111_081842_create_table_category.php diff --git a/console/migrations/m191111_081842_create_table_category.php b/console/migrations/m191111_081842_create_table_category.php deleted file mode 100644 index e7598bd..0000000 --- a/console/migrations/m191111_081842_create_table_category.php +++ /dev/null @@ -1,39 +0,0 @@ -createTable('ats_category', [ - 'id' => $this->primaryKey(), - 'name'=>$this->string(60)->defaultValue(null)->comment('类别名称'), - 'pid'=>$this->integer(11)->defaultValue(null)->comment('父级id'), - 'goods_count'=>$this->integer(11)->defaultValue(null)->comment('商品数量'), - 'sort_order'=>$this->smallInteger(3)->defaultValue(null)->comment('排序'), - 'icon_type'=>$this->tinyInteger(1)->defaultValue(null)->comment('图标类型'), - 'icon'=>$this->string(64)->defaultValue(null)->comment('图标'), - 'is_show'=>$this->tinyInteger(1)->defaultValue(null)->comment('是否显示,1为不显示'), - 'is_delete'=>$this->tinyInteger(1)->defaultValue(null)->comment('是否删除,1为已删除'), - 'created_at'=>$this->integer(11)->defaultValue(null)->comment('创建时间'), - 'updated_at'=>$this->integer(11)->defaultValue(null)->comment('更新时间'), - ],$tableOptions); - } - - /** - * {@inheritdoc} - */ - public function down() - { - $this->dropTable('ats_category'); - return true; - } -}