mirror of
https://github.com/haiwen/seahub.git
synced 2025-06-27 07:28:42 +00:00
20 lines
371 B
Python
20 lines
371 B
Python
# coding: UTF-8
|
|
|
|
from upgrade_common import upgrade_db
|
|
from add_collate import upgrade_collate
|
|
|
|
def main():
|
|
try:
|
|
upgrade_db('2.0.0')
|
|
upgrade_collate()
|
|
except Exception, e:
|
|
print 'Error:\n', e
|
|
else:
|
|
print '\ndone\n'
|
|
finally:
|
|
print '\nprint ENTER to exit\n'
|
|
raw_input()
|
|
|
|
if __name__ == '__main__':
|
|
main()
|