29 lines
796 B
Python
29 lines
796 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = []
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name="User_Keys",
|
|
fields=[
|
|
(
|
|
"id",
|
|
models.AutoField(
|
|
verbose_name="ID",
|
|
serialize=False,
|
|
auto_created=True,
|
|
primary_key=True,
|
|
),
|
|
),
|
|
("username", models.CharField(max_length=50)),
|
|
("secret_key", models.CharField(max_length=15)),
|
|
("added_on", models.DateTimeField(auto_now_add=True)),
|
|
],
|
|
),
|
|
]
|