Merge pull request #1315 from macb/sql/if_not_exists

sql: remove IF NOT EXISTS from mysql migrations
This commit is contained in:
Brad Rydzewski 2015-11-11 14:40:07 -08:00
commit be62e2ea73

View file

@ -72,7 +72,7 @@ CREATE TABLE IF NOT EXISTS builds (
,UNIQUE(build_number, build_repo_id)
);
CREATE INDEX IF NOT EXISTS ix_build_repo ON builds (build_repo_id);
CREATE INDEX ix_build_repo ON builds (build_repo_id);
CREATE TABLE IF NOT EXISTS jobs (
job_id INTEGER PRIMARY KEY AUTO_INCREMENT
@ -89,8 +89,8 @@ CREATE TABLE IF NOT EXISTS jobs (
,UNIQUE(job_build_id, job_number)
);
CREATE INDEX IF NOT EXISTS ix_job_build ON jobs (job_build_id);
CREATE INDEX IF NOT EXISTS ix_job_node ON jobs (job_node_id);
CREATE INDEX ix_job_build ON jobs (job_build_id);
CREATE INDEX ix_job_node ON jobs (job_node_id);
CREATE TABLE IF NOT EXISTS logs (
log_id INTEGER PRIMARY KEY AUTO_INCREMENT