mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-23 13:04:23 +00:00
test rss? and made some more files.
This commit is contained in:
parent
569cd087e7
commit
5f897f1bd0
13 changed files with 132 additions and 2 deletions
|
@ -27,6 +27,21 @@ create table if not exists newsProviders (
|
|||
)
|
||||
`;
|
||||
|
||||
const createNewsProvidersZh = await sql`
|
||||
create table if not exists newsProvidersZh (
|
||||
uuid text primary key,
|
||||
title text not null,
|
||||
slug text unique,
|
||||
website text not null,
|
||||
description text not null,
|
||||
facebookUrl text,
|
||||
twitterUrl text,
|
||||
threadsUrl text,
|
||||
logoUrl text not null,
|
||||
lean text not null
|
||||
)
|
||||
`;
|
||||
|
||||
const createAdminPosts = await sql`
|
||||
create table if not exists adminPosts (
|
||||
uuid text primary key,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue