1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('root', '0003_auto_20150527_0200'),
]
operations = [
migrations.CreateModel(
name='SocialMediaButton',
fields=[
('id', models.AutoField(auto_created=True, verbose_name='ID', serialize=False, primary_key=True)),
('name', models.CharField(max_length=150)),
('type', models.CharField(max_length=150)),
('account', models.CharField(max_length=150)),
('url', models.URLField(max_length=255)),
],
),
]
|