-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed datatracker app. Hard reset ietf app migrations. Provide a ut…
…ility to alter the django_migrations table to reflect that hard reset.
- Loading branch information
Showing
258 changed files
with
631 additions
and
7,711 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
20
ietf/bibliography/migrations/0002_bibliographyitem_content_key.py
This file was deleted.
Oops, something went wrong.
21 changes: 0 additions & 21 deletions
21
ietf/bibliography/migrations/0003_bibliographyitem_page.py
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
20 changes: 0 additions & 20 deletions
20
ietf/bibliography/migrations/0005_bibliographyitem_content_title.py
This file was deleted.
Oops, something went wrong.
20 changes: 0 additions & 20 deletions
20
ietf/bibliography/migrations/0006_bibliographyitem_content_identifier.py
This file was deleted.
Oops, something went wrong.
18 changes: 0 additions & 18 deletions
18
ietf/bibliography/migrations/0007_remove_bibliographytestpage_prepared_page_content.py
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
19 changes: 0 additions & 19 deletions
19
ietf/bibliography/migrations/0011_bibliographyitem_content_long_title.py
This file was deleted.
Oops, something went wrong.
47 changes: 0 additions & 47 deletions
47
ietf/bibliography/migrations/0012_use_snippets_objects_instead_of_dt_objects.py
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.