Skip to content

Commit 0064b98

Browse files
committed
[device] Added system field
1 parent c460476 commit 0064b98

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# -*- coding: utf-8 -*-
2+
# Generated by Django 1.10.7 on 2017-06-01 16:00
3+
from __future__ import unicode_literals
4+
5+
from django.db import migrations, models
6+
7+
8+
class Migration(migrations.Migration):
9+
10+
dependencies = [
11+
('config', '0008_update_indexes'),
12+
]
13+
14+
operations = [
15+
migrations.AddField(
16+
model_name='device',
17+
name='system',
18+
field=models.CharField(blank=True, db_index=True, help_text='system on chip or CPU info', max_length=128, verbose_name='SOC / CPU'),
19+
),
20+
]

0 commit comments

Comments
 (0)