demo.laravel-admin.org
demo.laravel-admin.org copied to clipboard
資料庫缺少"demo_documents" 表格
localhost:8000/documents
QueryException In Connection.php line 664 : SQLSTATE[42S02]: Base table or view not found: 1146 Table 'laravel_admin_demo.demo_documents' doesn't exist (SQL: select count(*) as aggregate from
demo_documents
wheredemo_documents
.deleted_at
is null)
我通過自行增加解決
CREATE TABLE `demo_documents` (
`id` int NOT NULL,
`title` varchar(255) DEFAULT NULL,
`desc` varchar(255) DEFAULT NULL,
`path` varchar(255) DEFAULT NULL,
`view_count` int DEFAULT NULL,
`download_count` int DEFAULT NULL,
`rate` int DEFAULT NULL,
`sort` int DEFAULT NULL,
`privilege` tinyint(1) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`uploader_id` varchar(255) DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;