GitHub APIから取得したGitHub Pagesの更新状況を格納するためのテーブルを作成するSQL文。
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
create table github_pages ( | |
id int(11) not null auto_increment, | |
filename varchar(768) unique, | |
description varchar(4096), | |
created_at datetime, | |
updated_at datetime, | |
generated_at timestamp not null default current_timestamp on update current_timestamp, | |
primary key(id) | |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment