Skip to content

Commit

Permalink
Notification rule migration
Browse files Browse the repository at this point in the history
  • Loading branch information
k1o0 committed Jul 24, 2023
1 parent 0eba8af commit 718fd89
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Generated by Django 4.1.7 on 2023-07-24 18:44

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('actions', '0019_imagingsession'),
]

operations = [
migrations.AlterField(
model_name='notification',
name='notification_type',
field=models.CharField(choices=[('responsible_user_change', 'responsible user has changed'), ('mouse_underweight', 'mouse is underweight'), ('mouse_water', 'water to give to mouse'), ('mouse_training', 'check training days'), ('mouse_not_weighed', 'no weight entered for date')], max_length=32),
),
migrations.AlterField(
model_name='notificationrule',
name='notification_type',
field=models.CharField(choices=[('responsible_user_change', 'responsible user has changed'), ('mouse_underweight', 'mouse is underweight'), ('mouse_water', 'water to give to mouse'), ('mouse_training', 'check training days'), ('mouse_not_weighed', 'no weight entered for date')], max_length=32),
),
]
2 changes: 1 addition & 1 deletion alyx/alyx/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = __version__ = '1.14.0'
VERSION = __version__ = '1.15.0'

0 comments on commit 718fd89

Please sign in to comment.