From 7f51daf5a179ebcd01f09f1fbe8468c0d4725a6c Mon Sep 17 00:00:00 2001 From: takezoe Date: Fri, 7 Jun 2013 01:34:18 +0900 Subject: [PATCH] Fix the data type of MILESTONE.REPOSITORY_NAME. --- src/main/resources/update/1_0.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/update/1_0.sql b/src/main/resources/update/1_0.sql index 0470c0b2f..6d3242b9d 100644 --- a/src/main/resources/update/1_0.sql +++ b/src/main/resources/update/1_0.sql @@ -72,7 +72,7 @@ CREATE TABLE ISSUE_LABEL( CREATE TABLE MILESTONE( USER_NAME VARCHAR(100) NOT NULL, - REPOSITORY_NAME INT NOT NULL, + REPOSITORY_NAME VARCHAR(100) NOT NULL, MILESTONE_ID INT AUTO_INCREMENT, MILESTONE_NAME VARCHAR(100) NOT NULL );