26 lines
794 B
Python
26 lines
794 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
import macaddress.fields
|
|
from django.conf import settings
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('users', '0002_auto_20170610_1550'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Machines',
|
|
fields=[
|
|
('id', models.AutoField(verbose_name='ID', primary_key=True, auto_created=True, serialize=False)),
|
|
('mac_address', macaddress.fields.MACAddressField(unique=True, max_length=17, integer=False)),
|
|
('proprio', models.ForeignKey(to=settings.AUTH_USER_MODEL, on_delete=django.db.models.deletion.PROTECT)),
|
|
],
|
|
),
|
|
]
|