ef8491eddc290058e6f56610fb550b861e704227
[wolnelektury.git] / apps / catalogue / migrations / 0006_add_author_death.py
1 # -*- coding: utf-8 -*-
2 from south.db import db
3 from django.db import models
4
5
6 class Migration:    
7     def forwards(self):
8         db.add_column('catalogue_tag', 'death', models.IntegerField(blank=True,  null=True))
9     
10     def backwards(self):
11         db.delete_column('catalogue_tag', 'death')
12
13