|
| 1 | +# encoding: utf-8 |
| 2 | +import datetime |
| 3 | +from south.db import db |
| 4 | +from south.v2 import SchemaMigration |
| 5 | +from django.db import models |
| 6 | + |
| 7 | +class Migration(SchemaMigration): |
| 8 | + |
| 9 | + def forwards(self, orm): |
| 10 | + |
| 11 | + # Adding field 'CroppedPhoto.hash' |
| 12 | + db.add_column('wall_croppedphoto', 'hash', self.gf('django.db.models.fields.CharField')(max_length=200, null=True, db_index=True), keep_default=False) |
| 13 | + |
| 14 | + |
| 15 | + def backwards(self, orm): |
| 16 | + |
| 17 | + # Deleting field 'CroppedPhoto.hash' |
| 18 | + db.delete_column('wall_croppedphoto', 'hash') |
| 19 | + |
| 20 | + |
| 21 | + models = { |
| 22 | + 'auth.group': { |
| 23 | + 'Meta': {'object_name': 'Group'}, |
| 24 | + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), |
| 25 | + 'name': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '80'}), |
| 26 | + 'permissions': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Permission']", 'symmetrical': 'False', 'blank': 'True'}) |
| 27 | + }, |
| 28 | + 'auth.permission': { |
| 29 | + 'Meta': {'ordering': "('content_type__app_label', 'content_type__model', 'codename')", 'unique_together': "(('content_type', 'codename'),)", 'object_name': 'Permission'}, |
| 30 | + 'codename': ('django.db.models.fields.CharField', [], {'max_length': '100'}), |
| 31 | + 'content_type': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['contenttypes.ContentType']"}), |
| 32 | + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), |
| 33 | + 'name': ('django.db.models.fields.CharField', [], {'max_length': '50'}) |
| 34 | + }, |
| 35 | + 'auth.user': { |
| 36 | + 'Meta': {'object_name': 'User'}, |
| 37 | + 'date_joined': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}), |
| 38 | + 'email': ('django.db.models.fields.EmailField', [], {'max_length': '75', 'blank': 'True'}), |
| 39 | + 'first_name': ('django.db.models.fields.CharField', [], {'max_length': '30', 'blank': 'True'}), |
| 40 | + 'groups': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Group']", 'symmetrical': 'False', 'blank': 'True'}), |
| 41 | + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), |
| 42 | + 'is_active': ('django.db.models.fields.BooleanField', [], {'default': 'True'}), |
| 43 | + 'is_staff': ('django.db.models.fields.BooleanField', [], {'default': 'False'}), |
| 44 | + 'is_superuser': ('django.db.models.fields.BooleanField', [], {'default': 'False'}), |
| 45 | + 'last_login': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}), |
| 46 | + 'last_name': ('django.db.models.fields.CharField', [], {'max_length': '30', 'blank': 'True'}), |
| 47 | + 'password': ('django.db.models.fields.CharField', [], {'max_length': '128'}), |
| 48 | + 'user_permissions': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Permission']", 'symmetrical': 'False', 'blank': 'True'}), |
| 49 | + 'username': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '30'}) |
| 50 | + }, |
| 51 | + 'contenttypes.contenttype': { |
| 52 | + 'Meta': {'ordering': "('name',)", 'unique_together': "(('app_label', 'model'),)", 'object_name': 'ContentType', 'db_table': "'django_content_type'"}, |
| 53 | + 'app_label': ('django.db.models.fields.CharField', [], {'max_length': '100'}), |
| 54 | + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), |
| 55 | + 'model': ('django.db.models.fields.CharField', [], {'max_length': '100'}), |
| 56 | + 'name': ('django.db.models.fields.CharField', [], {'max_length': '100'}) |
| 57 | + }, |
| 58 | + 'wall.album': { |
| 59 | + 'Meta': {'object_name': 'Album'}, |
| 60 | + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), |
| 61 | + 'identifier': ('django.db.models.fields.CharField', [], {'max_length': '200', 'db_index': 'True'}), |
| 62 | + 'title': ('django.db.models.fields.CharField', [], {'max_length': '4000', 'null': 'True', 'blank': 'True'}), |
| 63 | + 'url': ('django.db.models.fields.CharField', [], {'db_index': 'True', 'max_length': '300', 'null': 'True', 'blank': 'True'}), |
| 64 | + 'username': ('django.db.models.fields.CharField', [], {'default': "''", 'max_length': '100', 'db_index': 'True', 'blank': 'True'}) |
| 65 | + }, |
| 66 | + 'wall.croppedphoto': { |
| 67 | + 'Meta': {'object_name': 'CroppedPhoto'}, |
| 68 | + 'hash': ('django.db.models.fields.CharField', [], {'max_length': '200', 'null': 'True', 'db_index': 'True'}), |
| 69 | + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), |
| 70 | + 'original_photo': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'crops'", 'to': "orm['wall.Photo']"}), |
| 71 | + 'url': ('django.db.models.fields.CharField', [], {'max_length': '500', 'db_index': 'True'}), |
| 72 | + 'user': ('django.db.models.fields.related.ForeignKey', [], {'blank': 'True', 'related_name': "'cropped_photos'", 'null': 'True', 'to': "orm['auth.User']"}) |
| 73 | + }, |
| 74 | + 'wall.photo': { |
| 75 | + 'Meta': {'object_name': 'Photo'}, |
| 76 | + 'album': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'photos'", 'to': "orm['wall.Album']"}), |
| 77 | + 'height': ('django.db.models.fields.IntegerField', [], {'null': 'True', 'blank': 'True'}), |
| 78 | + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), |
| 79 | + 'thumbnail': ('django.db.models.fields.CharField', [], {'max_length': '500', 'db_index': 'True'}), |
| 80 | + 'title': ('django.db.models.fields.CharField', [], {'max_length': '4000', 'null': 'True', 'blank': 'True'}), |
| 81 | + 'url': ('django.db.models.fields.CharField', [], {'max_length': '500', 'db_index': 'True'}), |
| 82 | + 'width': ('django.db.models.fields.IntegerField', [], {'null': 'True', 'blank': 'True'}) |
| 83 | + }, |
| 84 | + 'wall.provider': { |
| 85 | + 'Meta': {'object_name': 'Provider'}, |
| 86 | + 'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), |
| 87 | + 'provider_name': ('django.db.models.fields.CharField', [], {'max_length': '100'}), |
| 88 | + 'update_at': ('django.db.models.fields.DateTimeField', [], {'auto_now_add': 'True', 'blank': 'True'}), |
| 89 | + 'username': ('django.db.models.fields.CharField', [], {'default': "'heynemann'", 'max_length': '100', 'db_index': 'True', 'blank': 'True'}) |
| 90 | + } |
| 91 | + } |
| 92 | + |
| 93 | + complete_apps = ['wall'] |
0 commit comments