Skip to content

Commit

Permalink
Removed datatracker app. Hard reset ietf app migrations. Provide a ut…
Browse files Browse the repository at this point in the history
…ility to alter the django_migrations table to reflect that hard reset.
  • Loading branch information
rjsparks committed Apr 10, 2020
1 parent 1f05276 commit a296221
Show file tree
Hide file tree
Showing 258 changed files with 631 additions and 7,711 deletions.
16 changes: 13 additions & 3 deletions ietf/bibliography/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -1,23 +1,33 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.29 on 2020-04-10 18:46
from __future__ import unicode_literals

from django.db import models, migrations
from django.db import migrations, models
import django.db.models.deletion


class Migration(migrations.Migration):

initial = True

dependencies = [
('wagtailcore', '0040_page_draft_title'),
('contenttypes', '0002_remove_content_type_name'),
]

operations = [
migrations.CreateModel(
name='BibliographyItem',
fields=[
('id', models.AutoField(serialize=False, auto_created=True, primary_key=True, verbose_name='ID')),
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('ordering', models.PositiveIntegerField(help_text='The bibliography items on each referring page are sorted and numbered with this ordering number.')),
('content_key', models.CharField(help_text='The "key" with which this item was created, eg. "rfc" in [[rfc:3514]].', max_length=127)),
('content_identifier', models.CharField(help_text='The "value" with which this item was created, eg. "3514" in [[rfc:3514]].', max_length=127)),
('content_long_title', models.CharField(blank=True, max_length=127)),
('content_title', models.CharField(help_text='The link title for this item, eg. "RFC 7168" for [[rfc:7168]].', max_length=127)),
('object_id', models.PositiveIntegerField(blank=True, null=True)),
('content_type', models.ForeignKey(blank=True, to='contenttypes.ContentType', null=True)),
('content_type', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='contenttypes.ContentType')),
('page', models.ForeignKey(help_text='The page that this item links to.', on_delete=django.db.models.deletion.CASCADE, related_name='bibliography_items', to='wagtailcore.Page')),
],
),
]
20 changes: 0 additions & 20 deletions ietf/bibliography/migrations/0002_bibliographyitem_content_key.py

This file was deleted.

21 changes: 0 additions & 21 deletions ietf/bibliography/migrations/0003_bibliographyitem_page.py

This file was deleted.

26 changes: 0 additions & 26 deletions ietf/bibliography/migrations/0004_bibliographytestpage.py

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

20 changes: 0 additions & 20 deletions ietf/bibliography/migrations/0008_auto_20151027_1434.py

This file was deleted.

19 changes: 0 additions & 19 deletions ietf/bibliography/migrations/0009_auto_20151027_1627.py

This file was deleted.

25 changes: 0 additions & 25 deletions ietf/bibliography/migrations/0010_auto_20160314_1543.py

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit a296221

Please sign in to comment.