mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 14:52:15 +00:00
8 lines
167 B
Python
8 lines
167 B
Python
from django_evolution.mutations import *
|
|
from django.db import models
|
|
|
|
MUTATIONS = [
|
|
AddField('EVEPlayerCharacter', 'total_sp', models.IntegerField, null=True)
|
|
]
|
|
|