blob: 58d5ce385d7e7b8438990013c7629f3cbdcab42b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# -*- coding: utf-8 -*-
# Generated by Django 1.11.18 on 2019-05-01 16:04
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('ishtar_common', '0095_auto_20190429_1041'),
]
operations = [
migrations.CreateModel(
name='TinyUrl',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('link', models.URLField()),
],
),
]
|