项目初始化

This commit is contained in:
lqyan
2024-10-13 15:33:34 +08:00
parent 35ef90a52c
commit 9b6cb6fc14
9 changed files with 170 additions and 0 deletions

0
db/a.html Normal file
View File

16
db/init-database.sql Normal file
View File

@@ -0,0 +1,16 @@
create table madou_video_info
(
id bigserial primary key not null,
title varchar(255) not null,
classify varchar(255) not null,
cover_url varchar(255),
m3u8_url varchar(255)
);
create table classify_info
(
id bigserial primary key not null,
name varchar(255) not null,
url varchar(255) not null,
page_size int not null
);
select sum(page_size) * 18 / 1024 / 2 from classify_info;