Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
张磊
/
FileStorageBeego
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
e572f452
authored
2014-08-13 14:50:32 +0800
by
astaxie
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
update the error output
1 parent
efcaa3d9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
migration/migration.go
migration/migration.go
View file @
e572f45
...
...
@@ -139,6 +139,7 @@ func Upgrade(lasttime int64) error {
err
:=
v
.
m
.
Exec
(
v
.
name
,
"up"
)
if
err
!=
nil
{
beego
.
Error
(
"execute error:"
,
err
)
time
.
Sleep
(
2
*
time
.
Second
)
return
err
}
beego
.
Info
(
"end upgrade:"
,
v
.
name
)
...
...
@@ -157,6 +158,7 @@ func Rollback(name string) error {
err
:=
v
.
Exec
(
name
,
"down"
)
if
err
!=
nil
{
beego
.
Error
(
"execute error:"
,
err
)
time
.
Sleep
(
2
*
time
.
Second
)
return
err
}
beego
.
Info
(
"end rollback"
)
...
...
@@ -176,6 +178,7 @@ func Reset() error {
err
:=
v
.
Exec
(
k
,
"down"
)
if
err
!=
nil
{
beego
.
Error
(
"execute error:"
,
err
)
time
.
Sleep
(
2
*
time
.
Second
)
return
err
}
beego
.
Info
(
"end reset:"
,
k
)
...
...
@@ -189,6 +192,7 @@ func Refresh() error {
err
:=
Reset
()
if
err
!=
nil
{
beego
.
Error
(
"execute error:"
,
err
)
time
.
Sleep
(
2
*
time
.
Second
)
return
err
}
return
Upgrade
(
0
)
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
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 post a comment