Web M&M
https://mam.matfyz.cz
19 lines
361 B
19 lines
361 B
10 years ago
|
# -*- coding: utf-8 -*-
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import models, migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('seminar', '0011_alter_timestamp_def'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.RemoveField(
|
||
|
model_name='soustredeni',
|
||
|
name='ucastnici',
|
||
|
),
|
||
|
]
|