Compare commits
2 commits
b31ef2b5b8
...
1cdd758604
Author | SHA1 | Date | |
---|---|---|---|
|
1cdd758604 | ||
|
dfd5de48d2 |
2 changed files with 5 additions and 4 deletions
|
@ -60,11 +60,12 @@ For the `channels` portion, you can import the premade CSV file made for this pr
|
|||
For the `subs` portion, enter the following in the SQL Editor and click Run:
|
||||
```sql
|
||||
create table
|
||||
public.usersubslist (
|
||||
public.subs (
|
||||
"Id" text not null,
|
||||
"UserSubscribed" text null,
|
||||
"UserSubscribed" text not null,
|
||||
"Platform" text null,
|
||||
"Subscribed" boolean not null default false
|
||||
constraint subs_pkey primary key ("Id", "UserSubscribed"),
|
||||
constraint subs_UserSubscribed_key unique ("UserSubscribed")
|
||||
) tablespace pg_default;
|
||||
```
|
||||
|
||||
|
|
|
@ -50,7 +50,7 @@ console.log(subs)
|
|||
)}
|
||||
<hr/>
|
||||
{subs.map((data) =>
|
||||
<p><a href={'/creator/' + data.Id}>{data.Id}</a> | <a href={'/api/account/remove?=' + data.Id}>Unsubscribe</a></p>
|
||||
<p><a href={'/creator/' + data.Id}>{data.Id}</a> | <a href={'/api/account/subscription/remove?=' + data.Id}>Unsubscribe</a></p>
|
||||
)}
|
||||
</Base>
|
||||
|
||||
|
|
Reference in a new issue