* remove unique constraint on jamtrack name

This commit is contained in:
Seth Call 2015-08-09 14:20:21 -05:00
parent eba1280708
commit da726a574b
3 changed files with 2 additions and 1 deletions

View File

@ -299,3 +299,4 @@ enhance_band_profile.sql
alter_band_profile_rate_defaults.sql
repair_band_profile.sql
jam_track_onboarding_enhancements.sql
jam_track_name_drop_unique.sql

View File

@ -0,0 +1 @@
ALTER TABLE jam_tracks DROP CONSTRAINT jam_tracks_name_key;

View File

@ -93,7 +93,6 @@ module JamRuby
tracks.each do |track|
sample_rate = `soxi -r "#{track}"`.strip
puts "SAMPLE RATE #{sample_rate}"
if first_sample_rate.nil?
first_sample_rate = sample_rate
else