Skip to content

Commit fb9dbeb

Browse files
authored
Merge pull request #270 from novafloss/255-drop-preset-tables
Drop Preset tables
2 parents 17efb62 + 9e3db3a commit fb9dbeb

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

CHANGELOG.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ master (unreleased)
66
===================
77

88
- As of its 3.7 version, it appears that Django REST Framework is no longer compatible with Django 1.8. Added a mention in the README, in the deprecation timeline, and changed tox requirements to reflect this (#272).
9+
- Drop Preset tables (#255).
910

1011
Release 1.0.1 (2017-10-04)
1112
==========================
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# -*- coding: utf-8 -*-
2+
# Generated by Django 1.11.6 on 2017-10-09 08:40
3+
from __future__ import unicode_literals
4+
5+
from django.db import migrations
6+
7+
8+
class Migration(migrations.Migration):
9+
10+
dependencies = [
11+
('formidable', '0006_drop_preset_fields'),
12+
]
13+
14+
operations = [
15+
migrations.DeleteModel(
16+
name='PresetArg',
17+
),
18+
migrations.DeleteModel(
19+
name='Preset',
20+
),
21+
]

0 commit comments

Comments
 (0)