Skip to content

Commit

Permalink
Add missing migration
Browse files Browse the repository at this point in the history
  • Loading branch information
fsbraun committed Jan 28, 2023
1 parent 0eea46e commit f68b081
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 21 deletions.
21 changes: 0 additions & 21 deletions djangocms_form_builder/migrations/0003_auto_20230128_1949.py

This file was deleted.

26 changes: 26 additions & 0 deletions djangocms_form_builder/migrations/0003_auto_20230128_2005.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Generated by Django 3.2 on 2023-01-28 20:05

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('djangocms_form_builder', '0002_alter_form_cmsplugin_ptr_and_more'),
]

operations = [
migrations.RemoveField(
model_name='form',
name='tag_type',
),
migrations.RemoveField(
model_name='formfield',
name='tag_type',
),
migrations.AlterField(
model_name='form',
name='captcha_widget',
field=models.CharField(blank=True, choices=[('', '-----')], default='', help_text='Read more in the <a href="https://developers.google.com/recaptcha" target="_blank">documentation</a>.', max_length=16, verbose_name='captcha widget'),
),
]

0 comments on commit f68b081

Please sign in to comment.