aboutsummaryrefslogtreecommitdiffstats
path: root/aggregator/migrations
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2012-03-10 16:11:52 +0100
committerGravatar ryuslash2012-03-10 16:12:17 +0100
commit662d2fd122ebf3b63ecf8cb2390c535edbc39d07 (patch)
tree229136debc2615113f657de8e7c7526f1b52d541 /aggregator/migrations
parent20ade8543a5d30adf1d0afbdfa5381ab8734ed7c (diff)
downloadryuslash.org-662d2fd122ebf3b63ecf8cb2390c535edbc39d07.tar.gz
ryuslash.org-662d2fd122ebf3b63ecf8cb2390c535edbc39d07.zip
Fixed some things to work live
Diffstat (limited to 'aggregator/migrations')
-rw-r--r--aggregator/migrations/0001_initial.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/aggregator/migrations/0001_initial.py b/aggregator/migrations/0001_initial.py
index 1cb4ade..dc3336e 100644
--- a/aggregator/migrations/0001_initial.py
+++ b/aggregator/migrations/0001_initial.py
@@ -27,7 +27,7 @@ class Migration(SchemaMigration):
# Adding model 'Post'
db.create_table('aggregator_post', (
('id', self.gf('django.db.models.fields.AutoField')(primary_key=True)),
- ('post_id', self.gf('django.db.models.fields.CharField')(unique=True, max_length=500)),
+ ('post_id', self.gf('django.db.models.fields.CharField')(unique=True, max_length=255)),
('title', self.gf('django.db.models.fields.CharField')(max_length=500)),
('body', self.gf('django.db.models.fields.TextField')()),
('remote_url', self.gf('django.db.models.fields.URLField')(max_length=255)),