Skip to content
This repository was archived by the owner on Aug 12, 2020. It is now read-only.

Commit fde6292

Browse files
committed
change to ImageField, not FileField
1 parent 0f76e91 commit fde6292

File tree

2 files changed

+68
-7
lines changed

2 files changed

+68
-7
lines changed
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
# -*- coding: 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+
8+
class Migration(SchemaMigration):
9+
10+
def forwards(self, orm):
11+
12+
# Changing field 'Picture.file'
13+
db.alter_column('fileupload_picture', 'file', self.gf('django.db.models.fields.files.ImageField')(max_length=100))
14+
15+
def backwards(self, orm):
16+
17+
# Changing field 'Picture.file'
18+
db.alter_column('fileupload_picture', 'file', self.gf('django.db.models.fields.files.FileField')(max_length=100))
19+
20+
models = {
21+
'auth.group': {
22+
'Meta': {'object_name': 'Group'},
23+
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
24+
'name': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '80'}),
25+
'permissions': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Permission']", 'symmetrical': 'False', 'blank': 'True'})
26+
},
27+
'auth.permission': {
28+
'Meta': {'ordering': "('content_type__app_label', 'content_type__model', 'codename')", 'unique_together': "(('content_type', 'codename'),)", 'object_name': 'Permission'},
29+
'codename': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
30+
'content_type': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['contenttypes.ContentType']"}),
31+
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
32+
'name': ('django.db.models.fields.CharField', [], {'max_length': '50'})
33+
},
34+
'auth.user': {
35+
'Meta': {'object_name': 'User'},
36+
'date_joined': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}),
37+
'email': ('django.db.models.fields.EmailField', [], {'max_length': '75', 'blank': 'True'}),
38+
'first_name': ('django.db.models.fields.CharField', [], {'max_length': '30', 'blank': 'True'}),
39+
'groups': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Group']", 'symmetrical': 'False', 'blank': 'True'}),
40+
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
41+
'is_active': ('django.db.models.fields.BooleanField', [], {'default': 'True'}),
42+
'is_staff': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
43+
'is_superuser': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
44+
'last_login': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}),
45+
'last_name': ('django.db.models.fields.CharField', [], {'max_length': '30', 'blank': 'True'}),
46+
'password': ('django.db.models.fields.CharField', [], {'max_length': '128'}),
47+
'user_permissions': ('django.db.models.fields.related.ManyToManyField', [], {'to': "orm['auth.Permission']", 'symmetrical': 'False', 'blank': 'True'}),
48+
'username': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '30'})
49+
},
50+
'contenttypes.contenttype': {
51+
'Meta': {'ordering': "('name',)", 'unique_together': "(('app_label', 'model'),)", 'object_name': 'ContentType', 'db_table': "'django_content_type'"},
52+
'app_label': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
53+
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
54+
'model': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
55+
'name': ('django.db.models.fields.CharField', [], {'max_length': '100'})
56+
},
57+
'fileupload.picture': {
58+
'Meta': {'object_name': 'Picture'},
59+
'creator': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['auth.User']"}),
60+
'file': ('django.db.models.fields.files.ImageField', [], {'max_length': '100'}),
61+
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
62+
'slug': ('django.db.models.fields.SlugField', [], {'max_length': '50', 'blank': 'True'})
63+
}
64+
}
65+
66+
complete_apps = ['fileupload']

fileupload/models.py

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,8 @@
11
from django.db import models
22

33
class Picture(models.Model):
4-
5-
# This is a small demo using just two fields. The slug field is really not
6-
# necessary, but makes the code simpler. ImageField depends on PIL or
7-
# pillow (where Pillow is easily installable in a virtualenv. If you have
8-
# problems installing pillow, use a more generic FileField instead.
9-
10-
#file = models.FileField(upload_to="pictures")
4+
# This is a small demo using FileField instead of ImageField, not
5+
# depending on PIL. You will probably want ImageField in your app.
116
file = models.ImageField(upload_to="pictures")
127
slug = models.SlugField(max_length=50, blank=True)
138

0 commit comments

Comments
 (0)