mirror of
https://github.com/haiwen/seafile-server.git
synced 2025-06-30 17:01:51 +00:00
18 lines
305 B
Python
18 lines
305 B
Python
|
# coding: UTF-8
|
||
|
|
||
|
from upgrade_common import upgrade_db
|
||
|
|
||
|
def main():
|
||
|
try:
|
||
|
upgrade_db('1.8.0')
|
||
|
except Exception, e:
|
||
|
print 'Error:\n', e
|
||
|
else:
|
||
|
print '\ndone\n'
|
||
|
finally:
|
||
|
print '\nprint ENTER to exit\n'
|
||
|
raw_input()
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
main()
|