mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-30 04:10:32 +00:00
update varchar to 255 for the unique value to work for the migrations table.
This commit is contained in:
parent
3f3abe88f6
commit
52ee6fa5be
2 changed files with 2 additions and 2 deletions
|
@ -99,7 +99,7 @@ INSERT IGNORE INTO migrations (name) VALUES
|
|||
|
||||
var createMigrationsTable = `
|
||||
CREATE TABLE IF NOT EXISTS migrations (
|
||||
name VARCHAR(512)
|
||||
name VARCHAR(255)
|
||||
,UNIQUE(name)
|
||||
)
|
||||
`
|
||||
|
|
|
@ -150,7 +150,7 @@ func selectCompleted(db *sql.DB) (map[string]struct{}, error) {
|
|||
|
||||
var migrationTableCreate = `
|
||||
CREATE TABLE IF NOT EXISTS migrations (
|
||||
name VARCHAR(512)
|
||||
name VARCHAR(255)
|
||||
,UNIQUE(name)
|
||||
)
|
||||
`
|
||||
|
|
Loading…
Reference in a new issue