Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
B
beego
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
beego
Commits
5a1e821a
Commit
5a1e821a
authored
Nov 19, 2015
by
astaxie
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1434 from WnP/pg-fix
fix postgres syntax error during migration
parents
821b2f83
29ac961c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
migration.go
migration/migration.go
+2
-2
No files found.
migration/migration.go
View file @
5a1e821a
...
@@ -104,7 +104,7 @@ func (m *Migration) addOrUpdateRecord(name, status string) error {
...
@@ -104,7 +104,7 @@ func (m *Migration) addOrUpdateRecord(name, status string) error {
o
:=
orm
.
NewOrm
()
o
:=
orm
.
NewOrm
()
if
status
==
"down"
{
if
status
==
"down"
{
status
=
"rollback"
status
=
"rollback"
p
,
err
:=
o
.
Raw
(
"update migrations set
`status` = ?, `rollback_statements` = ?, `created_at`
= ? where name = ?"
)
.
Prepare
()
p
,
err
:=
o
.
Raw
(
"update migrations set
status = ?, rollback_statements = ?, created_at
= ? where name = ?"
)
.
Prepare
()
if
err
!=
nil
{
if
err
!=
nil
{
return
nil
return
nil
}
}
...
@@ -112,7 +112,7 @@ func (m *Migration) addOrUpdateRecord(name, status string) error {
...
@@ -112,7 +112,7 @@ func (m *Migration) addOrUpdateRecord(name, status string) error {
return
err
return
err
}
}
status
=
"update"
status
=
"update"
p
,
err
:=
o
.
Raw
(
"insert into migrations(
`name`, `created_at`, `statements`, `status`
) values(?,?,?,?)"
)
.
Prepare
()
p
,
err
:=
o
.
Raw
(
"insert into migrations(
name, created_at, statements, status
) values(?,?,?,?)"
)
.
Prepare
()
if
err
!=
nil
{
if
err
!=
nil
{
return
err
return
err
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment