Commit ee2bdc2c authored by wuhao's avatar wuhao 🎯

sader

parent b3701610
{
"recommendations": [
"ppz.ppz"
]
"recommendations": []
}
\ No newline at end of file
/*
Warnings:
- You are about to drop the column `created` on the `Folder` table. All the data in the column will be lost.
- You are about to drop the column `updated` on the `Folder` table. All the data in the column will be lost.
- Added the required column `poster` to the `Folder` table without a default value. This is not possible if the table is not empty.
- Added the required column `updatedAt` to the `Folder` table without a default value. This is not possible if the table is not empty.
*/
-- AlterTable
ALTER TABLE `Folder` DROP COLUMN `created`,
DROP COLUMN `updated`,
ADD COLUMN `createdAt` DATETIME(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3),
ADD COLUMN `poster` VARCHAR(191) NOT NULL,
ADD COLUMN `updatedAt` DATETIME(3) NOT NULL;
......@@ -10,7 +10,7 @@ function ServerSidePage({ folders }) {
return (
<div className="p-4">
<span class="bg-clip-text text-transparent bg-gradient-to-r from-pink-500 to-violet-500">
<span className="bg-clip-text text-transparent bg-gradient-to-r from-pink-500 to-violet-500">
服务端渲染页面
</span>
<div className="gap-2 grid xl:grid-cols-8 lg:grid-cols-6 md:grid-cols-4 sm:grid-cols-2 mt-4">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment