-
Notifications
You must be signed in to change notification settings - Fork 250
Open
Description
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 fromdemo_documentswheredemo_documents.deleted_atis 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;Metadata
Metadata
Assignees
Labels
No labels

