40 lines
2.0 KiB
Python
40 lines
2.0 KiB
Python
# Generated by Django 3.0.5 on 2020-04-11 14:39
|
|
|
|
import app.models
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('app', '0015_auto_20200411_1431'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='merit',
|
|
name='modifierAbility',
|
|
field=app.models.NamedManyToManyField(blank=True, to='app.modifierAbility', verbose_name='Abilities Modifiers'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='merit',
|
|
name='modifierAttribute',
|
|
field=app.models.NamedManyToManyField(blank=True, to='app.modifierAttribute', verbose_name='Attribute Modifiers'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='merit',
|
|
name='modifierStatic',
|
|
field=app.models.NamedManyToManyField(blank=True, to='app.modifierStatic', verbose_name='Statics Modifiers'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='merit',
|
|
name='rollConfiguration',
|
|
field=app.models.NamedManyToManyField(blank=True, to='app.rollConfiguration', verbose_name='Roll Configurations'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='speciality',
|
|
name='ability',
|
|
field=app.models.SingleChoiceField(blank=True, choices=[('War', (('ARCHERY', 'Archery'), ('ATHLETICS', 'Athletics'), ('AWARENESS', 'Awareness'), ('BRAWL', 'Brawl'), ('DODGE', 'Dodge'), ('INTEGRITY', 'Integrity'), ('MELEE', 'Melee'), ('RESISTANCE', 'Resistance'), ('THROWN', 'Thrown'), ('WAR', 'War'))), ('Life', (('CRAFT', 'Craft'), ('LARCENY', 'Larceny'), ('LINGUISTICS', 'Linguistics'), ('PERFORMANCE', 'Performance'), ('PRESENCE', 'Presence'), ('RIDE', 'Ride'), ('SAIL', 'Sail'), ('SOCIALISE', 'Socialise'), ('STEALTH', 'Stealth'), ('SURVIVAL', 'Survival'))), ('Wisdom', (('BUREAUCRACY', 'Bureaucracy'), ('INVESTIGATION', 'Investigation'), ('LORE', 'Lore'), ('MEDICINE', 'Medicine'), ('OCCULT', 'Occult')))], max_length=100, verbose_name='Ability'),
|
|
),
|
|
]
|