Skip to content

Commit c4c33f9

Browse files
committed
Fix 'relation "core_project" does not exist' error
Sorry guys, that was my error, forgot to add dependency on website migrations, since website migration have to be run first, before core, to transfer Project model from website to core.
1 parent c48dfce commit c4c33f9

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

pylab/core/migrations/0001_initial.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ class Migration(migrations.Migration):
1212

1313
dependencies = [
1414
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
15+
('website', '0002_auto_20150728_0303'),
1516
]
1617

1718
operations = [

0 commit comments

Comments
 (0)