1 Star 0 Fork 58

kong/wtxlog

forked from digwtx/wtxlog 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
init_db.py 798 Bytes
一键复制 编辑 原始数据 按行查看 历史
digwtx 提交于 2015-02-01 13:27 . 使用Flake8清理及规范代码
# -*- coding: utf-8 -*-
"""
Just for development time
"""
from manage import db
from wtxlog.models import User, Role, Category
if __name__ == '__main__':
# init database
db.create_all()
# create user roles
Role.insert_roles()
# add administrator
user = User()
user.username = 'admin'
user.password = 'admin'
user.email = 'admin@example.com'
user.role = Role.query.filter_by(permissions=0xff).first()
user.confirmed = True
# add default category
category = Category()
category.slug = 'default'
category.name = 'Default'
# commit
db.session.add(user)
db.session.add(category)
db.session.commit()
print('==================================')
print('Init Done.')
print('==================================')
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/xiaoshuting1018/wtxlog.git
git@gitee.com:xiaoshuting1018/wtxlog.git
xiaoshuting1018
wtxlog
wtxlog
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385