Coverage for crateweb/consent/migrations/0004_auto_20160703_1530.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.8.0, created at 2025-08-27 10:34 -0500

1""" 

2crate_anon/crateweb/consent/migrations/0004_auto_20160703_1530.py 

3 

4=============================================================================== 

5 

6 Copyright (C) 2015, University of Cambridge, Department of Psychiatry. 

7 Created by Rudolf Cardinal (rnc1001@cam.ac.uk). 

8 

9 This file is part of CRATE. 

10 

11 CRATE is free software: you can redistribute it and/or modify 

12 it under the terms of the GNU General Public License as published by 

13 the Free Software Foundation, either version 3 of the License, or 

14 (at your option) any later version. 

15 

16 CRATE is distributed in the hope that it will be useful, 

17 but WITHOUT ANY WARRANTY; without even the implied warranty of 

18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 

19 GNU General Public License for more details. 

20 

21 You should have received a copy of the GNU General Public License 

22 along with CRATE. If not, see <https://www.gnu.org/licenses/>. 

23 

24=============================================================================== 

25 

26**Consent app, migration 0004.** 

27 

28""" 

29 

30# Generated by Django 1.9.7 on 2016-07-03 15:30 

31from __future__ import unicode_literals 

32 

33from django.db import migrations, models 

34 

35 

36class Migration(migrations.Migration): 

37 

38 dependencies = [ 

39 ("consent", "0003_auto_20160628_1301"), 

40 ] 

41 

42 operations = [ 

43 migrations.AddField( 

44 model_name="dummypatientsourceinfo", 

45 name="pt_discharge_date", 

46 field=models.DateField( 

47 blank=True, null=True, verbose_name="Patient date of discharge" 

48 ), 

49 ), 

50 migrations.AddField( 

51 model_name="patientlookup", 

52 name="pt_discharge_date", 

53 field=models.DateField( 

54 blank=True, null=True, verbose_name="Patient date of discharge" 

55 ), 

56 ), 

57 ]