-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
565 additions
and
18 deletions.
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
create table episode_patch | ||
( | ||
id uuid not null | ||
primary key, | ||
episode_id integer not null, | ||
state integer default 0 not null, | ||
from_user_id integer not null, | ||
wiki_user_id integer default 0 not null, | ||
reason text not null, | ||
|
||
original_name text, | ||
name text, | ||
|
||
original_name_cn text, | ||
name_cn text, | ||
|
||
original_duration varchar(255), | ||
duration varchar(255), | ||
|
||
original_airdate varchar(64), | ||
airdate varchar(64), | ||
|
||
original_description text, | ||
description text, | ||
|
||
created_at timestamp with time zone default CURRENT_TIMESTAMP not null, | ||
updated_at timestamp with time zone default CURRENT_TIMESTAMP not null, | ||
deleted_at timestamp with time zone, | ||
|
||
reject_reason varchar(255) default '' not null | ||
); | ||
|
||
|
||
create index on episode_patch (state); |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
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
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
Oops, something went wrong.