<
SPAN
style
=
"BACKGROUND-COLOR: #c0c0c0"
>Skipping creation of NoticeTypes as notification app not found
Running migrations for profiles:
- Migrating forwards to 0002_auto__add_field_interest_created_on__add_field_profile_created_on__add.
> profiles:0001_initial
south execute "CREATE TABLE "profiles_profile" ("id" integer NOT NULL PRIMARY KEY, "user_id" integer NOT NULL UNIQUE, "first_name" varchar(30) NOT NULL, "last_name" varchar(30) NOT NULL, "location" varchar(255) NOT NULL, "image" varchar(100) NOT NULL, "bio" text NOT NULL);" with params "[]"
Traceback (most recent call last):
File "manage.py", line 26, in <
module
>
execute_manager(settings)
File "/Library/Python/2.6/site-packages/django/core/management/__init__.py", line 438, in execute_manager
utility.execute()
File "/Library/Python/2.6/site-packages/django/core/management/__init__.py", line 379, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/Library/Python/2.6/site-packages/django/core/management/base.py", line 191, in run_from_argv
self.execute(*args, **options.__dict__)
File "/Library/Python/2.6/site-packages/django/core/management/base.py", line 220, in execute
output = self.handle(*args, **options)
File "/Library/Python/2.6/site-packages/south/management/commands/migrate.py", line 105, in handle
ignore_ghosts = ignore_ghosts,
File "/Library/Python/2.6/site-packages/south/migration/__init__.py", line 191, in migrate_app
success = migrator.migrate_many(target, workplan, database)
File "/Library/Python/2.6/site-packages/south/migration/migrators.py", line 221, in migrate_many
result = migrator.__class__.migrate_many(migrator, target, migrations, database)
File "/Library/Python/2.6/site-packages/south/migration/migrators.py", line 292, in migrate_many
result = self.migrate(migration, database)
File "/Library/Python/2.6/site-packages/south/migration/migrators.py", line 125, in migrate
result = self.run(migration)
File "/Library/Python/2.6/site-packages/south/migration/migrators.py", line 99, in run
return self.run_migration(migration)
File "/Library/Python/2.6/site-packages/south/migration/migrators.py", line 81, in run_migration
migration_function()
File "/Library/Python/2.6/site-packages/south/migration/migrators.py", line 57, in <
lambda
>
return (lambda: direction(orm))
File "/Users/neddo/Sites/Mozilla/drumbeat/batucada/apps/profiles/migrations/0001_initial.py", line 19, in forwards
('bio', self.gf('django.db.models.fields.TextField')()),
File "/Library/Python/2.6/site-packages/south/db/gen