зеркало из https://github.com/mozilla/bedrock.git
Fix 12986: Remove the rest of pocketfeed
This commit is contained in:
Родитель
f2c0dbbd63
Коммит
cbebf7998b
|
@ -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",
|
||||
|
|
Загрузка…
Ссылка в новой задаче