|
| 1 | +# Generated by Django 4.2.20 on 2025-04-02 13:58 |
| 2 | + |
| 3 | +import django.contrib.auth.validators |
| 4 | +from django.db import migrations, models |
| 5 | + |
| 6 | + |
| 7 | +class Migration(migrations.Migration): |
| 8 | + |
| 9 | + dependencies = [ |
| 10 | + ('accounts', '0003_auto_20180228_1158'), |
| 11 | + ] |
| 12 | + |
| 13 | + operations = [ |
| 14 | + migrations.AddField( |
| 15 | + model_name='accountrequest', |
| 16 | + name='discipline', |
| 17 | + field=models.CharField(blank=True, choices=[('Computer & Information Services', 'Computer & Information Services'), ('Engineering', 'Engineering'), ('Geosciences, Atmospheric Sciences & Ocean Sciences', 'Geosciences, Atmospheric Sciences & Ocean Sciences'), ('Life Sciences', 'Life Sciences'), ('Mathematics and Statistics', 'Mathematics and Statistics'), ('Physical Sciences', 'Physical Sciences'), ('Psychology', 'Psychology'), ('Social Sciences', 'Social Sciences'), ('Other Sciences (not elsewhere classified)', 'Other Sciences (not elsewhere classified)'), ('Education', 'Education'), ('Law', 'Law'), ('Humanities', 'Humanities'), ('Visual & Performing Arts', 'Visual & Performing Arts'), ('Business Management and Business Administration', 'Business Management and Business Administration'), ('Communications, Communications Technologies, Journalism (Library Science is considered “Other Non-Science & Engineering Fields”)', 'Communications, Communications Technologies, Journalism (Library Science is considered “Other Non-Science & Engineering Fields”)'), ('Social Work', 'Social Work'), ('Other Non-Science & Engineering Fields', 'Other Non-Science & Engineering Fields')], max_length=256, null=True), |
| 18 | + ), |
| 19 | + migrations.AlterField( |
| 20 | + model_name='accountrequest', |
| 21 | + name='id', |
| 22 | + field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'), |
| 23 | + ), |
| 24 | + migrations.AlterField( |
| 25 | + model_name='accountrequest', |
| 26 | + name='login_shell', |
| 27 | + field=models.CharField(choices=[('/bin/bash', 'bash'), ('/bin/tcsh', 'tcsh')], default='/bin/bash', max_length=24), |
| 28 | + ), |
| 29 | + migrations.AlterField( |
| 30 | + model_name='accountrequest', |
| 31 | + name='organization', |
| 32 | + field=models.CharField(choices=[('ucb', 'University of Colorado Boulder'), ('csu', 'Colorado State University'), ('xsede', 'XSEDE'), ('amc', 'University of Colorado Denver | Anschutz Medical Campus'), ('ncar', 'NCAR'), ('internal', 'Research Computing - Administrative')], max_length=128), |
| 33 | + ), |
| 34 | + migrations.AlterField( |
| 35 | + model_name='accountrequest', |
| 36 | + name='role', |
| 37 | + field=models.CharField(choices=[('undergraduate', 'Undergraduate'), ('graduate', 'Graduate'), ('postdoc', 'Post Doc'), ('instructor', 'Instructor'), ('faculty', 'Faculty'), ('affiliated_faculty', 'Affiliated Faculty'), ('staff', 'Staff'), ('sponsored', 'Sponsored Affiliate')], default='undergraduate', max_length=24), |
| 38 | + ), |
| 39 | + migrations.AlterField( |
| 40 | + model_name='accountrequest', |
| 41 | + name='status', |
| 42 | + field=models.CharField(choices=[('p', 'Pending'), ('a', 'Approved'), ('d', 'Denied'), ('i', 'Incomplete')], default='p', max_length=16), |
| 43 | + ), |
| 44 | + migrations.AlterField( |
| 45 | + model_name='idtracker', |
| 46 | + name='id', |
| 47 | + field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'), |
| 48 | + ), |
| 49 | + migrations.AlterField( |
| 50 | + model_name='intent', |
| 51 | + name='id', |
| 52 | + field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'), |
| 53 | + ), |
| 54 | + migrations.AlterField( |
| 55 | + model_name='user', |
| 56 | + name='first_name', |
| 57 | + field=models.CharField(blank=True, max_length=150, verbose_name='first name'), |
| 58 | + ), |
| 59 | + migrations.AlterField( |
| 60 | + model_name='user', |
| 61 | + name='id', |
| 62 | + field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'), |
| 63 | + ), |
| 64 | + migrations.AlterField( |
| 65 | + model_name='user', |
| 66 | + name='last_name', |
| 67 | + field=models.CharField(blank=True, max_length=150, verbose_name='last name'), |
| 68 | + ), |
| 69 | + migrations.AlterField( |
| 70 | + model_name='user', |
| 71 | + name='username', |
| 72 | + field=models.CharField(error_messages={'unique': 'A user with that username already exists.'}, help_text='Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only.', max_length=150, unique=True, validators=[django.contrib.auth.validators.UnicodeUsernameValidator()], verbose_name='username'), |
| 73 | + ), |
| 74 | + ] |
0 commit comments