mirror of
https://github.com/postgres/pgweb.git
synced 2025-08-13 13:12:42 +00:00
Remove externallink field from Mailinglist model
This is not used for anything...
This commit is contained in:
18
pgweb/lists/migrations/0003_remove_list_externallink.py
Normal file
18
pgweb/lists/migrations/0003_remove_list_externallink.py
Normal file
@ -0,0 +1,18 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('lists', '0002_listname_unique'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='mailinglist',
|
||||
name='externallink',
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user