Coverage for crateweb/consent/migrations/0012_auto_20181102_1335.py: 100%

5 statements  

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

1# Generated by Django 2.1.2 on 2018-11-02 13:35 

2 

3from django.db import migrations, models 

4 

5 

6""" 

7crate_anon/crateweb/consent/migrations/0010_auto_20180629_1238.py 

8 

9=============================================================================== 

10 

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

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

13 

14 This file is part of CRATE. 

15 

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

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

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

19 (at your option) any later version. 

20 

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

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

23 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 

24 GNU General Public License for more details. 

25 

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

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

28 

29=============================================================================== 

30 

31**Consent app, migration 0012.** 

32 

33""" 

34 

35 

36class Migration(migrations.Migration): 

37 

38 dependencies = [ 

39 ("consent", "0011_auto_20181022_0801"), 

40 ] 

41 

42 operations = [ 

43 migrations.AlterField( 

44 model_name="teamrep", 

45 name="team", 

46 field=models.CharField( 

47 max_length=100, unique=True, verbose_name="Team description" 

48 ), 

49 ), 

50 ]