Skip to content

Commit

Permalink
[device] Added system field
Browse files Browse the repository at this point in the history
  • Loading branch information
nemesifier committed Jun 1, 2017
1 parent c460476 commit 0064b98
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions openwisp_controller/config/migrations/0009_device_system.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.7 on 2017-06-01 16:00
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('config', '0008_update_indexes'),
]

operations = [
migrations.AddField(
model_name='device',
name='system',
field=models.CharField(blank=True, db_index=True, help_text='system on chip or CPU info', max_length=128, verbose_name='SOC / CPU'),
),
]

0 comments on commit 0064b98

Please sign in to comment.