Skip to content

Commit

Permalink
adding the migration that adds some verbose names to core models
Browse files Browse the repository at this point in the history
  • Loading branch information
fredkingham committed Aug 13, 2018
1 parent fd1feb9 commit 3a628c9
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions opal/migrations/0035_auto_20180806_1150.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.8 on 2018-08-06 11:50
from __future__ import unicode_literals

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('opal', '0034_auto_20171214_1845'),
]

operations = [
migrations.AlterModelOptions(
name='inpatientadmission',
options={'verbose_name': 'Inpatient Admissions'},
),
migrations.AlterModelOptions(
name='tagging',
options={'verbose_name': 'Teams'},
),
]

0 comments on commit 3a628c9

Please sign in to comment.