Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit6a755ea

Browse files
committed
test
1 parent9f5d60c commit6a755ea

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

‎stubbornjava-cms-server/src/main/resources/db/cms/migration/V_2018.02.16.1__initial-schema.sql‎

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,3 +56,13 @@ CREATE TABLE IF NOT EXISTS post_tag_links (
5656
CONSTRAINT`post_tag_links_post_id_fk`FOREIGN KEY (`post_id`)REFERENCES`post` (`post_id`),
5757
CONSTRAINT`post_tag_links_post_tag_id_fk`FOREIGN KEY (`post_tag_id`)REFERENCES`post_tag` (`post_tag_id`)
5858
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
59+
60+
CREATETABLEIF NOT EXISTS post_github_file_links (
61+
post_idBIGINTNOT NULL,
62+
github_ownervarchar(255)NOT NULL,
63+
github_repovarchar(255)NOT NULL,
64+
namevarchar(255)NOT NULL,
65+
file_pathTEXTNOT NULL,
66+
PRIMARY KEY (post_id, github_owner, github_repo, name),
67+
CONSTRAINT`post_tag_links_post_id_fk`FOREIGN KEY (`post_id`)REFERENCES`post` (`post_id`),
68+
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp