mirror of
https://github.com/harness/drone.git
synced 2025-05-17 01:20:13 +08:00
Merge pull request #1315 from macb/sql/if_not_exists
sql: remove IF NOT EXISTS from mysql migrations
This commit is contained in:
commit
be62e2ea73
@ -72,7 +72,7 @@ CREATE TABLE IF NOT EXISTS builds (
|
|||||||
,UNIQUE(build_number, build_repo_id)
|
,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 (
|
CREATE TABLE IF NOT EXISTS jobs (
|
||||||
job_id INTEGER PRIMARY KEY AUTO_INCREMENT
|
job_id INTEGER PRIMARY KEY AUTO_INCREMENT
|
||||||
@ -89,8 +89,8 @@ CREATE TABLE IF NOT EXISTS jobs (
|
|||||||
,UNIQUE(job_build_id, job_number)
|
,UNIQUE(job_build_id, job_number)
|
||||||
);
|
);
|
||||||
|
|
||||||
CREATE INDEX IF NOT EXISTS ix_job_build ON jobs (job_build_id);
|
CREATE INDEX 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_node ON jobs (job_node_id);
|
||||||
|
|
||||||
CREATE TABLE IF NOT EXISTS logs (
|
CREATE TABLE IF NOT EXISTS logs (
|
||||||
log_id INTEGER PRIMARY KEY AUTO_INCREMENT
|
log_id INTEGER PRIMARY KEY AUTO_INCREMENT
|
||||||
|
Loading…
Reference in New Issue
Block a user