File tree 3 files changed +17
-3
lines changed
3 files changed +17
-3
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 )
Original file line number Diff line number Diff line change @@ -372,15 +372,13 @@ def setUp(self):
372
372
version = self .external_version ,
373
373
name = 'file.html' ,
374
374
path = 'file.html' ,
375
- md5 = 'abcdef' ,
376
375
commit = '1234567890abcdef' ,
377
376
)
378
377
self .internal_html_file = HTMLFile .objects .create (
379
378
project = self .pip ,
380
379
version = self .internal_version ,
381
380
name = 'file.html' ,
382
381
path = 'file.html' ,
383
- md5 = 'abcdef' ,
384
382
commit = '1234567890abcdef' ,
385
383
)
386
384
You can’t perform that action at this time.
0 commit comments