You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
849 B
Python

# Generated by Django 3.1.4 on 2020-12-19 17:43
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='Slug',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('slug', models.SlugField(help_text='Slug of the new URL. Up to 20 caracters including letters, number, underscores and hyphens.', max_length=20)),
('destination', models.CharField(help_text='The destination URL, limited to 300 characters.', max_length=300)),
('uid', models.CharField(max_length=100, null=True)),
('date', models.DateTimeField(auto_now=True)),
],
),
]