From 04557bbff362ae3b89e7dd98a1fb11e0aaeba50e Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Tue, 14 Feb 2017 15:01:07 -0500 Subject: [PATCH] Make this no-op migration be a true no-op. --- .../student/migrations/0010_auto_20170207_0458.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/common/djangoapps/student/migrations/0010_auto_20170207_0458.py b/common/djangoapps/student/migrations/0010_auto_20170207_0458.py index e700f1ec66..901e70ebf3 100644 --- a/common/djangoapps/student/migrations/0010_auto_20170207_0458.py +++ b/common/djangoapps/student/migrations/0010_auto_20170207_0458.py @@ -26,9 +26,5 @@ class Migration(migrations.Migration): # ) operations = [ - migrations.RunSQL( - # Do nothing: - "select 1", - "select 1" - ) + # Nothing to do. ]