-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Force some repo activity so that the GitHub action is not disabled
- Loading branch information
Showing
2 changed files
with
33 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ name: Twitter things | |
|
||
on: | ||
schedule: | ||
- cron: "37 13 * * *" | ||
- cron: "37 12 * * *" | ||
|
||
jobs: | ||
get-likes: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
create table jvelo_at.twitter_like | ||
( | ||
id varchar(20) primary key, | ||
created_at timestamp not null, | ||
text text, | ||
truncated bool default FALSE, | ||
entities jsonb, | ||
extended_entities jsonb, | ||
is_quote_status bool, | ||
quoted_status json, | ||
quoted_status_id bigint, | ||
source text, | ||
in_reply_to_status_id bigint, | ||
in_reply_to_user_id bigint, | ||
in_reply_to_screen_name text, | ||
user_data json, | ||
retweet_count int, | ||
favorite_count int, | ||
favorited bool, | ||
retweeted bool, | ||
possibly_sensitive bool, | ||
lang varchar(10) | ||
); | ||
|
||
comment on table jvelo_at.twitter_like is 'likes from my twitter account'; | ||
|
||
create index twitter_like_created_at_index | ||
on jvelo_at.twitter_like (created_at); | ||
|
||
create index twitter_like_lang_index | ||
on jvelo_at.twitter_like (lang); | ||
|
a44c9df
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
jvelo-at – ./
jvelo-at-git-master-jvelo.vercel.app
jvelo-at.vercel.app
jvelo-at-jvelo.vercel.app
jvelo.at