Skip to content

Commit

Permalink
Migrations Updated
Browse files Browse the repository at this point in the history
  • Loading branch information
srahulbadami committed Mar 14, 2018
1 parent 88a90a3 commit 137f817
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions website/migrations/0045_auto_20180314_2032.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.10 on 2018-03-14 20:32
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('website', '0044_auto_20170907_1605'),
]

operations = [
migrations.CreateModel(
name='IP',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('address', models.CharField(blank=True, max_length=25, null=True)),
('user', models.CharField(blank=True, max_length=25, null=True)),
('issuenumber', models.IntegerField(blank=True, null=True)),
],
),
migrations.AlterField(
model_name='userprofile',
name='issue_upvoted',
field=models.ManyToManyField(blank=True, related_name='upvoted', to='website.Issue'),
),
]

0 comments on commit 137f817

Please sign in to comment.