1 Star 0 Fork 0

gitee_pd/octopus

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
createdb.py 510 Bytes
一键复制 编辑 原始数据 按行查看 历史
suzezhi 提交于 2015-05-04 16:00 . add some files
__author__ = 'xiaosu'
from octopus import db
from config import SQLALCHEMY_DATABASE_URI
from octopus.models import Users
from hashlib import md5
admin_password="octopus"
admin=Users('admin',md5(admin_password).hexdigest(),"your realname","your cell phone number here","[email protected]",comment="hello world",is_admin=True,is_locked=False)
db.create_all()
try:
db.session.add(admin)
db.session.commit()
except Exception as e:
print "Add admin failed,here is the information:"
print str(e)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/wang1205/octopus.git
[email protected]:wang1205/octopus.git
wang1205
octopus
octopus
master

搜索帮助