demo.laravel-admin.org icon indicating copy to clipboard operation
demo.laravel-admin.org copied to clipboard

資料庫缺少"demo_documents" 表格

Open WingCH opened this issue 4 years ago • 0 comments

image

localhost:8000/documents

image

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 where demo_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;

WingCH avatar Apr 18 '20 12:04 WingCH