Browse Source
			
			
			Delete all migrations and start anew
			
				
		Delete all migrations and start anew
	
		
	
			
				Deleted all migrations and started anew to incorporate changes in models.master
				 4 changed files with 14 additions and 106 deletions
			
			
		- 
					26spotifyvis/migrations/0001_initial.py
 - 
					18spotifyvis/migrations/0002_auto_20180605_2347.py
 - 
					53spotifyvis/migrations/0002_auto_20180606_0523.py
 - 
					23spotifyvis/migrations/0003_auto_20180606_0525.py
 
@ -1,18 +0,0 @@ | 
			
		|||||
# Generated by Django 2.0.5 on 2018-06-05 23:47 | 
				 | 
			
		||||
 | 
				 | 
			
		||||
from django.db import migrations | 
				 | 
			
		||||
 | 
				 | 
			
		||||
 | 
				 | 
			
		||||
class Migration(migrations.Migration): | 
				 | 
			
		||||
 | 
				 | 
			
		||||
    dependencies = [ | 
				 | 
			
		||||
        ('spotifyvis', '0001_initial'), | 
				 | 
			
		||||
    ] | 
				 | 
			
		||||
 | 
				 | 
			
		||||
    operations = [ | 
				 | 
			
		||||
        migrations.RenameField( | 
				 | 
			
		||||
            model_name='track', | 
				 | 
			
		||||
            old_name='artist', | 
				 | 
			
		||||
            new_name='artists', | 
				 | 
			
		||||
        ), | 
				 | 
			
		||||
    ] | 
				 | 
			
		||||
@ -1,53 +0,0 @@ | 
			
		|||||
# Generated by Django 2.0.5 on 2018-06-06 09:23 | 
				 | 
			
		||||
 | 
				 | 
			
		||||
from django.db import migrations, models | 
				 | 
			
		||||
 | 
				 | 
			
		||||
 | 
				 | 
			
		||||
class Migration(migrations.Migration): | 
				 | 
			
		||||
 | 
				 | 
			
		||||
    dependencies = [ | 
				 | 
			
		||||
        ('spotifyvis', '0001_initial'), | 
				 | 
			
		||||
    ] | 
				 | 
			
		||||
 | 
				 | 
			
		||||
    operations = [ | 
				 | 
			
		||||
        migrations.AlterField( | 
				 | 
			
		||||
            model_name='audiofeatures', | 
				 | 
			
		||||
            name='acousticness', | 
				 | 
			
		||||
            field=models.DecimalField(decimal_places=3, max_digits=3), | 
				 | 
			
		||||
        ), | 
				 | 
			
		||||
        migrations.AlterField( | 
				 | 
			
		||||
            model_name='audiofeatures', | 
				 | 
			
		||||
            name='danceability', | 
				 | 
			
		||||
            field=models.DecimalField(decimal_places=3, max_digits=3), | 
				 | 
			
		||||
        ), | 
				 | 
			
		||||
        migrations.AlterField( | 
				 | 
			
		||||
            model_name='audiofeatures', | 
				 | 
			
		||||
            name='energy', | 
				 | 
			
		||||
            field=models.DecimalField(decimal_places=3, max_digits=3), | 
				 | 
			
		||||
        ), | 
				 | 
			
		||||
        migrations.AlterField( | 
				 | 
			
		||||
            model_name='audiofeatures', | 
				 | 
			
		||||
            name='instrumentalness', | 
				 | 
			
		||||
            field=models.DecimalField(decimal_places=3, max_digits=3), | 
				 | 
			
		||||
        ), | 
				 | 
			
		||||
        migrations.AlterField( | 
				 | 
			
		||||
            model_name='audiofeatures', | 
				 | 
			
		||||
            name='loudness', | 
				 | 
			
		||||
            field=models.DecimalField(decimal_places=3, max_digits=3), | 
				 | 
			
		||||
        ), | 
				 | 
			
		||||
        migrations.AlterField( | 
				 | 
			
		||||
            model_name='audiofeatures', | 
				 | 
			
		||||
            name='speechiness', | 
				 | 
			
		||||
            field=models.DecimalField(decimal_places=3, max_digits=3), | 
				 | 
			
		||||
        ), | 
				 | 
			
		||||
        migrations.AlterField( | 
				 | 
			
		||||
            model_name='audiofeatures', | 
				 | 
			
		||||
            name='tempo', | 
				 | 
			
		||||
            field=models.DecimalField(decimal_places=3, max_digits=3), | 
				 | 
			
		||||
        ), | 
				 | 
			
		||||
        migrations.AlterField( | 
				 | 
			
		||||
            model_name='audiofeatures', | 
				 | 
			
		||||
            name='valence', | 
				 | 
			
		||||
            field=models.DecimalField(decimal_places=3, max_digits=3), | 
				 | 
			
		||||
        ), | 
				 | 
			
		||||
    ] | 
				 | 
			
		||||
@ -1,23 +0,0 @@ | 
			
		|||||
# Generated by Django 2.0.5 on 2018-06-06 09:25 | 
				 | 
			
		||||
 | 
				 | 
			
		||||
from django.db import migrations, models | 
				 | 
			
		||||
 | 
				 | 
			
		||||
 | 
				 | 
			
		||||
class Migration(migrations.Migration): | 
				 | 
			
		||||
 | 
				 | 
			
		||||
    dependencies = [ | 
				 | 
			
		||||
        ('spotifyvis', '0002_auto_20180606_0523'), | 
				 | 
			
		||||
    ] | 
				 | 
			
		||||
 | 
				 | 
			
		||||
    operations = [ | 
				 | 
			
		||||
        migrations.AlterField( | 
				 | 
			
		||||
            model_name='audiofeatures', | 
				 | 
			
		||||
            name='loudness', | 
				 | 
			
		||||
            field=models.DecimalField(decimal_places=3, max_digits=6), | 
				 | 
			
		||||
        ), | 
				 | 
			
		||||
        migrations.AlterField( | 
				 | 
			
		||||
            model_name='audiofeatures', | 
				 | 
			
		||||
            name='tempo', | 
				 | 
			
		||||
            field=models.DecimalField(decimal_places=3, max_digits=6), | 
				 | 
			
		||||
        ), | 
				 | 
			
		||||
    ] | 
				 | 
			
		||||
						Write
						Preview
					
					
					Loading…
					
					Cancel
						Save
					
		Reference in new issue