File tree 2 files changed +17
-1
lines changed
2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change
1
+ # Generated by Django 2.2.20 on 2021-04-15 18:40
2
+
3
+ from django .db import migrations
4
+
5
+
6
+ class Migration (migrations .Migration ):
7
+
8
+ dependencies = [
9
+ ('projects' , '0071_add_env_var_privacy' ),
10
+ ]
11
+
12
+ operations = [
13
+ migrations .RemoveField (
14
+ model_name = 'importedfile' ,
15
+ name = 'md5' ,
16
+ ),
17
+ ]
Original file line number Diff line number Diff line change @@ -1370,7 +1370,6 @@ class ImportedFile(models.Model):
1370
1370
# of 4096 characters for most filesystems (including EXT4).
1371
1371
# https://github.com/rtfd/readthedocs.org/issues/5061
1372
1372
path = models .CharField (_ ('Path' ), max_length = 4096 )
1373
- md5 = models .CharField (_ ('MD5 checksum' ), max_length = 255 , null = True )
1374
1373
commit = models .CharField (_ ('Commit' ), max_length = 255 )
1375
1374
build = models .IntegerField (_ ('Build id' ), null = True )
1376
1375
modified_date = models .DateTimeField (_ ('Modified date' ), auto_now = True )
You can’t perform that action at this time.
0 commit comments