💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、豆包、星火、月之暗面及文生图、文生视频 广告
~~~ > vi db.php 配置项 'tablePreFix'=>'shop_' ~~~ ~~~ create database shop; use shop; create table shop_user( -> id int unsigned not null auto_increment primary key, -> username varchar(32) not null default '', -> password char(32) not null default '' -> )engine=innodb default charset=utf8; insert into shop_user values('user1',md5('user1')); ~~~