Replies: 2 comments
-
使用pgsql是这样的 Dropping all tables .............................................. 11ms FAIL could not find driver (SQL: select tablename, concat('"', schemaname, '"."', tablename, '"') as qualifiedname from pg_catalog.pg_tables where schemaname in ('public')) |
Beta Was this translation helpful? Give feedback.
0 replies
-
解决了,未安装pgsql相关php拓展,端口号不正确 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Dropping all tables .............................................. 29ms DONE
INFO Preparing database.
Creating migration table ......................................... 25ms DONE
INFO Running migrations.
2014_10_10_000000_create_groups_table ............................. 1ms FAIL
Installation error!
SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'json not null comment '组配置',
created_at
timestamp null,updated_at
tim' at line 1 (SQL: create tablegroups
(id
bigint unsigned not null auto_increment primary key,name
varchar(64) not null comment '角色组名称',is_default
tinyint(1) not null default '0' comment '是否默认',is_guest
tinyint(1) not null default '0' comment '是否为游客组',configs
json not null comment '组配置',created_at
timestamp null,updated_at
timestamp null) default character set utf8mb4 collate 'utf8mb4_unicode_ci' engine = InnoDB)Beta Was this translation helpful? Give feedback.
All reactions