mirror of
https://gitlab.com/crafty-controller/crafty-4.git
synced 2024-08-30 18:23:09 +00:00
e06fe8a52a
Apply black formatting to codebase
30 lines
718 B
Python
30 lines
718 B
Python
# Generated by database migrator
|
|
from peewee import *
|
|
from app.classes.models.users import Users
|
|
|
|
|
|
def migrate(migrator, database, **kwargs):
|
|
db = database
|
|
|
|
class User_Crafty(Model):
|
|
user_id = ForeignKeyField(Users, backref="users_crafty")
|
|
permissions = CharField(default="00000000")
|
|
limit_server_creation = IntegerField(default=-1)
|
|
|
|
class Meta:
|
|
table_name = "user_crafty"
|
|
database = db
|
|
|
|
migrator.create_table(User_Crafty)
|
|
"""
|
|
Write your migrations here.
|
|
"""
|
|
|
|
|
|
def rollback(migrator, database, **kwargs):
|
|
migrator.drop_table("user_crafty") # Can be model class OR table name
|
|
|
|
"""
|
|
Write your rollback migrations here.
|
|
"""
|