* remove unique constraint on jamtrack name
This commit is contained in:
parent
eba1280708
commit
da726a574b
|
|
@ -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
|
||||
|
|
@ -0,0 +1 @@
|
|||
ALTER TABLE jam_tracks DROP CONSTRAINT jam_tracks_name_key;
|
||||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue