Fix 12986: Remove the rest of pocketfeed

This commit is contained in:
Rob Hudson 2024-10-22 10:02:43 -07:00 коммит произвёл Rob Hudson
Родитель f2c0dbbd63
Коммит cbebf7998b
6 изменённых файлов: 0 добавлений и 70 удалений

Просмотреть файл

@ -1,3 +0,0 @@
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.

Просмотреть файл

@ -1,29 +0,0 @@
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = []
operations = [
migrations.CreateModel(
name="PocketArticle",
fields=[
("id", models.AutoField(verbose_name="ID", serialize=False, auto_created=True, primary_key=True)),
("pocket_id", models.IntegerField()),
("url", models.URLField()),
("domain", models.CharField(max_length=255)),
("title", models.CharField(max_length=255)),
("image_src", models.URLField()),
("time_shared", models.DateTimeField()),
("created_date", models.DateTimeField(auto_now_add=True)),
],
options={
"ordering": ["-time_shared"],
"get_latest_by": "time_shared",
},
),
]

Просмотреть файл

@ -1,19 +0,0 @@
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("pocketfeed", "0001_initial"),
]
operations = [
migrations.AlterField(
model_name="pocketarticle",
name="image_src",
field=models.URLField(null=True),
),
]

Просмотреть файл

@ -1,15 +0,0 @@
# Generated by Django 4.2.16 on 2024-10-21 20:08
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("pocketfeed", "0002_auto_20180723_0805"),
]
operations = [
migrations.DeleteModel(
name="PocketArticle",
),
]

Просмотреть файл

@ -1,3 +0,0 @@
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.

Просмотреть файл

@ -747,7 +747,6 @@ INSTALLED_APPS = [
"bedrock.utils",
"bedrock.wordpress",
"bedrock.sitemaps",
"bedrock.pocketfeed",
"bedrock.careers",
# last so that redirects here will be last
"bedrock.redirects",