Skip to content

loftkun/connpass-twitter-bot-ITEventFukuoka

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

ITEventFukuoka

Tweet bot for events in Fukuoka obtained from connpass API

bot

福岡新着ITイベント(@ITEventFukuoka)

SQLite

sqlite3 connpass-ITEventFukuoka.sqlite3

CREATE TABLE events (
id INTEGER PRIMARY KEY AUTOINCREMENT,
event_id varchar(128),
created_at TEXT NOT NULL DEFAULT (DATETIME('now', 'localtime')),
updated_at TEXT NOT NULL DEFAULT (DATETIME('now', 'localtime'))
);

CREATE TRIGGER trigger_events_updated_at AFTER UPDATE ON events
BEGIN
UPDATE events SET updated_at = DATETIME('now', 'localtime') WHERE rowid == NEW.rowid;
END;

About

Tweet bot for events in Fukuoka obtained from connpass API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages