fixed orphaned plugins and add post functionality
This commit is contained in:
parent
78e66862bf
commit
ddb4de2954
12 changed files with 186 additions and 86 deletions
21
membership/migrations/0002_auto_20160324_2336.py
Normal file
21
membership/migrations/0002_auto_20160324_2336.py
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.9.4 on 2016-03-24 23:36
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('membership', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='creditcards',
|
||||
name='user_id',
|
||||
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='membership.CustomUser'),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue