table('extension_hello', [ 'comment' => 'hello测试表', 'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'id' => false, 'primary_key' => 'id' ]); $table->addColumn('id', 'string', [ 'limit' => 50, 'null' => false, 'comment' => '唯一标识符' ])->addColumn('name', 'string', [ 'limit' => 100, 'null' => false, 'comment' => '名称' ])->addColumn('update_time', 'datetime', [ 'null' => true, 'comment' => '更新时间' ])->addColumn('delete_time', 'datetime', [ 'null' => true, 'comment' => '删除时间' ])->addIndex(['id'], [ 'unique' => true, 'name' => 'uniq_id' ])->create(); } }