Player library, unified renderer for artists and playlists
This commit is contained in:
parent
453e809646
commit
9ec28708c5
|
@ -11,26 +11,6 @@ class window.Ajax
|
|||
$('#artist-load-spinner').hide()
|
||||
false
|
||||
|
||||
load404Page: ->
|
||||
$.get '/404.html', (data) ->
|
||||
$('.data-container .inner').html data
|
||||
false
|
||||
|
||||
loadIndexPage: ->
|
||||
$('#content').load '/greetings/'
|
||||
_ajax.setTitle ''
|
||||
false
|
||||
|
||||
loadAboutPage: ->
|
||||
$('#content').load '/about/'
|
||||
_ajax.setTitle 'About'
|
||||
false
|
||||
|
||||
loadStatPage: ->
|
||||
$('#content').load '/stat/'
|
||||
_ajax.setTitle 'Statistics'
|
||||
false
|
||||
|
||||
setArchor: (anchor) ->
|
||||
@referer = this.getAnchor()
|
||||
window.location.hash = '#' +anchor
|
||||
|
@ -66,6 +46,10 @@ class window.Ajax
|
|||
_session.query path, {}, (response) ->
|
||||
_page.render response
|
||||
_ajax.hideSpinner()
|
||||
if _session.getUser().id?
|
||||
$('.button-container').show()
|
||||
else
|
||||
$('.button-container').hide()
|
||||
false
|
||||
false
|
||||
|
||||
|
|
|
@ -34,7 +34,7 @@ class window.BeatHaven
|
|||
logs: []
|
||||
|
||||
init: ->
|
||||
log "Initiating BeatHaven ..."
|
||||
log "Initializing BeatHaven ..."
|
||||
|
||||
window._vkontakte = new Vkontakte(2335068)
|
||||
window._vkontakte.init()
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
class window.Page
|
||||
|
||||
@data: {}
|
||||
@html: ""
|
||||
@status: ""
|
||||
data: {}
|
||||
html: ""
|
||||
status: ""
|
||||
|
||||
render: (params) ->
|
||||
@data = params.data
|
||||
|
@ -10,9 +10,13 @@ class window.Page
|
|||
@title = params.title
|
||||
@status = params.status
|
||||
|
||||
log "Rendering page titled \"#{@title}\" of type \"#{params.renderer}\" ..."
|
||||
log "Rendering page titled \"#{@title}\" with #{params.renderer} renderer ..."
|
||||
$('#content').html(@html)
|
||||
|
||||
if params.callback?
|
||||
log "Executing page callback action #{params.callback.object}##{params.callback.action} ..."
|
||||
window["_"+params.callback.object][params.callback.action](@data)
|
||||
|
||||
# yaCounter7596904.hit _ajax.getAnchor(), @title, _ajax.referer
|
||||
_ajax.setTitle @title
|
||||
false
|
||||
|
@ -46,15 +50,6 @@ class window.Page
|
|||
false
|
||||
|
||||
$ ->
|
||||
$('#logo').live 'click', ->
|
||||
_ajax.go '/'
|
||||
false
|
||||
$('.about').live 'click', ->
|
||||
_ajax.go '/about/'
|
||||
false
|
||||
$('.stat').live 'click', ->
|
||||
_ajax.go '/stat/'
|
||||
false
|
||||
$('body').live 'click', ->
|
||||
$('.dropdown-toggle, .menu').parent('li').removeClass('open')
|
||||
false
|
||||
|
@ -64,6 +59,9 @@ $ ->
|
|||
$('.dropdown-menu li a').live 'click', ->
|
||||
$(this).parent().parent().parent().toggleClass('open')
|
||||
false
|
||||
$('.page-link').live 'click', (e) ->
|
||||
_ajax.go $(this).attr("href")
|
||||
false
|
||||
$('.foreign-link').live 'click', (e) ->
|
||||
# window.open($(this).attr('href'))
|
||||
e.preventDefault();
|
||||
|
|
|
@ -5,6 +5,7 @@ class window.Player
|
|||
scrobbled: false
|
||||
albums: []
|
||||
playlist: []
|
||||
library: {}
|
||||
|
||||
initJplayer: ->
|
||||
self = this
|
||||
|
@ -48,24 +49,25 @@ class window.Player
|
|||
self.setTrack next
|
||||
false
|
||||
|
||||
addTracks: (tracks, autoplay) ->
|
||||
addTrack: (item, autoplay) ->
|
||||
if typeof item in ["number", "string"]
|
||||
item = @library[item]
|
||||
if not autoplay?
|
||||
autoplay = false
|
||||
initial_count = $('.playlist li').length
|
||||
for item in tracks
|
||||
len = parseInt(item.length, 10)
|
||||
m = Math.floor(len / 60)
|
||||
s = len - Math.floor(len / 60) * 60
|
||||
duration = m + ':' + (if s < 10 then '0' else '') + s
|
||||
item_class = (if item.available == false then 'unavailable' else '')
|
||||
$('.playlist').append "
|
||||
<li id='i#{Math.round(Math.random() * 999999)}' data-id='#{item.id}' class='#{item_class}'>
|
||||
<div class='song-duration'>#{duration}</div>
|
||||
<div class='label important remove'>remove</div>
|
||||
<div class='artist-name'><a class='data artist'>#{item.artist}</a></div>
|
||||
<div class='song-title'>#{item.name}</div>
|
||||
</li>"
|
||||
_player.playlist.push item
|
||||
len = parseInt(item.length, 10)
|
||||
m = Math.floor(len / 60)
|
||||
s = len - Math.floor(len / 60) * 60
|
||||
duration = m + ':' + (if s < 10 then '0' else '') + s
|
||||
item_class = (if item.available == false then 'unavailable' else '')
|
||||
$('.playlist').append "
|
||||
<li id='i#{Math.round(Math.random() * 999999)}' data-id='#{item.id}' class='#{item_class}'>
|
||||
<div class='song-duration'>#{duration}</div>
|
||||
<div class='label important remove'>remove</div>
|
||||
<div class='artist-name'><a class='data artist'>#{item.artist}</a></div>
|
||||
<div class='song-title'>#{item.name}</div>
|
||||
</li>"
|
||||
_player.playlist.push item
|
||||
$('.playlist').sortable axis: 'y', cursor: 'move'
|
||||
if initial_count == 0 and not _player.hasTrack()
|
||||
_player.setTrack($('.playlist li').first().attr('id').split('i')[1])
|
||||
|
@ -197,14 +199,18 @@ class window.Player
|
|||
|
||||
setPlaylist: (data) ->
|
||||
this.emptyPlaylist()
|
||||
tracks = []
|
||||
for item in data.playlist_items
|
||||
tracks.push
|
||||
id: item.track.id
|
||||
name: item.track.name
|
||||
artist: item.track.artists[0].name
|
||||
length: item.track.length
|
||||
this.addTracks tracks
|
||||
for track in data.tracks
|
||||
this.addTrack track
|
||||
false
|
||||
|
||||
updateLibrary: (data) ->
|
||||
if data.albums?
|
||||
for album in data.albums
|
||||
for track in album.tracks
|
||||
@library[track.id] = track
|
||||
if data.tracks?
|
||||
for track in data.tracks
|
||||
@library[track.id] = track
|
||||
false
|
||||
|
||||
|
||||
|
@ -257,36 +263,18 @@ $('.playlist li').live 'click', ->
|
|||
# Adding To Playlist actions
|
||||
|
||||
$('.add-album').live 'click', ->
|
||||
album = _player.getAlbumInfo($(this).attr('data-album-id'))
|
||||
for item in album.tracks
|
||||
item['artist'] = album.artist
|
||||
item['album'] = album.name
|
||||
_player.addTracks album.tracks
|
||||
for id in $(this).data('tracks').split(",")
|
||||
_player.addTrack id
|
||||
false
|
||||
|
||||
$('.s-add').live 'click', ->
|
||||
album = _player.getAlbumInfo($(this).attr('data-album-id'))
|
||||
item = album.tracks[$(this).attr('data-id')]
|
||||
for item in album.tracks
|
||||
if item.id == parseInt($(this).attr('data-id'), 10)
|
||||
item['artist'] = album.artist
|
||||
item['album'] = album.name
|
||||
_player.addTracks [item]
|
||||
return false
|
||||
_player.addTrack $(this).data('id')
|
||||
false
|
||||
|
||||
$('.set-playlist').live 'click', ->
|
||||
_search.showSpinner()
|
||||
$.get "/playlist/#{$(this).data('playlist-id')}", (playlist) ->
|
||||
_player.setPlaylist playlist
|
||||
_search.hideSpinner()
|
||||
false
|
||||
false
|
||||
|
||||
$('.dynamic-playlist') .live 'click', ->
|
||||
_search.showSpinner()
|
||||
$.get "/playlist/#{$(this).data('playlist')}", (playlist) ->
|
||||
_player.setPlaylist playlist
|
||||
$.get "/playlist/#{$(this).data('playlist')}", (response) ->
|
||||
_player.setPlaylist response.data
|
||||
_search.hideSpinner()
|
||||
false
|
||||
false
|
||||
|
|
|
@ -12,35 +12,29 @@ class window.Search
|
|||
false
|
||||
|
||||
loadArtistData: (name) ->
|
||||
log "Loading artist page ..."
|
||||
_search.showSpinner()
|
||||
name = name.split(' ').join('+')
|
||||
$.get '/artist/' +name+ '/', (data) ->
|
||||
if data.status in ['ok', 'loading']
|
||||
_ajax.setArchor '/artist/' +name+ '/'
|
||||
_page.print data.html
|
||||
if _session.getUser().id
|
||||
if data.artist.albums?
|
||||
for album in data.artist.albums
|
||||
album['artist'] = data.artist.name
|
||||
_player.albums.push(album)
|
||||
$('.button-container').show()
|
||||
_page.render data
|
||||
_search.hideSpinner()
|
||||
if _session.getUser().id?
|
||||
$('.button-container').show()
|
||||
else
|
||||
$('.button-container').hide()
|
||||
if data.status is 'loading'
|
||||
setTimeout () ->
|
||||
_search.loadArtistData name
|
||||
, 10000
|
||||
_ajax.setTitle $('#main h2').text()
|
||||
else if data.status is 'corrected'
|
||||
_search.loadArtistData data.correct_name
|
||||
else if data.status is 'suggestions'
|
||||
_search.hideSpinner()
|
||||
_page.print data.html
|
||||
else if data.status == 'fail'
|
||||
_search.hideSpinner()
|
||||
_page.print data.html
|
||||
else if data.status == 'not_found'
|
||||
_search.hideSpinner()
|
||||
alert "Not found"
|
||||
else
|
||||
_search.hideSpinner()
|
||||
_page.print data.html
|
||||
false
|
||||
|
||||
$('#search-form').live 'submit', ->
|
||||
|
@ -48,5 +42,5 @@ $('#search-form').live 'submit', ->
|
|||
_search.loadArtistData $('#search').val()
|
||||
false
|
||||
$('.data.artist').live 'click', ->
|
||||
_search.loadArtistData $(this).html()
|
||||
_ajax.go "/artist/"+$(this).html().split(' ').join('+')
|
||||
false
|
||||
|
|
|
@ -6,7 +6,6 @@ class window.Settings
|
|||
false
|
||||
_session.secureLoad '/settings/', (data) ->
|
||||
false
|
||||
#yaCounter7596904.hit _ajax.getAnchor(), 'Settings', _ajax.referer
|
||||
_ajax.setTitle 'Settings'
|
||||
false
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ class window.Vkontakte
|
|||
@api_id
|
||||
|
||||
init: ->
|
||||
log "Initiating Vkontakte API ..."
|
||||
log "Initializing Vkontakte API ..."
|
||||
window.vkAsyncInit = ->
|
||||
VK.init apiId: _vkontakte.getApiId()
|
||||
_vkontakte.auth()
|
||||
|
|
|
@ -31,6 +31,7 @@
|
|||
margin-bottom: 20px;
|
||||
.art {
|
||||
img {
|
||||
width: 100%;
|
||||
max-width: 220px;
|
||||
}
|
||||
.button-container {
|
||||
|
@ -46,6 +47,15 @@
|
|||
tr.unavailable > td {
|
||||
background-color: #FFF0F0;
|
||||
}
|
||||
td.album-pic {
|
||||
padding: 0;
|
||||
line-height: 0;
|
||||
height: 40px;
|
||||
width: 40px;
|
||||
img {
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
td.song-title {
|
||||
padding: 12px 10px 10px 9px;
|
||||
}
|
||||
|
|
|
@ -16,7 +16,8 @@ class ApplicationController < ActionController::Base
|
|||
data: @data,
|
||||
html: render_compact_partial(params[:partial]),
|
||||
title: params[:title],
|
||||
status: (params[:status] unless params[:status].nil?)
|
||||
status: (params[:status] unless params[:status].nil?),
|
||||
callback: (params[:callback] unless params[:callback].nil?)
|
||||
}, include: (params[:include] unless params[:include].nil?)
|
||||
end
|
||||
|
||||
|
@ -24,7 +25,7 @@ protected
|
|||
|
||||
def authorize
|
||||
unless Vkontakte.check(params)
|
||||
render :json => { :status => 'login failed' }
|
||||
render json: { status: 'login failed' }, status: 403
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -32,11 +32,14 @@ class ArtistController < ApplicationController
|
|||
return render json: { status: 'fail', html: render_compact_partial(:fail) }
|
||||
end
|
||||
|
||||
render json: {
|
||||
cache_for 1.week
|
||||
compile_page(
|
||||
data: @artist.serialize,
|
||||
partial: "artist/page",
|
||||
title: @artist.name,
|
||||
status: @artist.status_str,
|
||||
artist: @artist,
|
||||
html: render_compact_partial(:page)
|
||||
}, include: { albums: { include: { tracks: {}}}}
|
||||
callback: {object: :player, action: :updateLibrary}
|
||||
)
|
||||
end
|
||||
|
||||
private
|
||||
|
|
|
@ -14,10 +14,10 @@ class LastFmController < ApplicationController
|
|||
session.user.save
|
||||
render :text => '<script>window.close();</script>'
|
||||
else
|
||||
return render :text => 'You Don\'t Fool Me'
|
||||
return render :text => 'You Don\'t Fool Me', status: 403
|
||||
end
|
||||
else
|
||||
return render :text => 'So Much Trouble In The World'
|
||||
return render :text => 'So Much Trouble In The World', status: 403
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -41,7 +41,7 @@ class LastFmController < ApplicationController
|
|||
def listening
|
||||
@res = {}
|
||||
if params[:artist].nil? or params[:album].nil? or params[:name].nil?
|
||||
return render :json => { :status => 'bad params' }
|
||||
return render :json => { :status => 'bad params' }, status: 403
|
||||
end
|
||||
user = User.find_by_vkid(params[:mid])
|
||||
if user.lastfm_key.nil?
|
||||
|
@ -51,17 +51,17 @@ class LastFmController < ApplicationController
|
|||
:track => params[:name],
|
||||
:artist => params[:artist],
|
||||
:album => params[:album],
|
||||
:trackNumber => params[:position].to_i,
|
||||
:trackNumber => params[:position].gsub(/[a-z]/, "").to_i,
|
||||
:duration => params[:length].to_i,
|
||||
:sk => user.lastfm_key # Auth session key
|
||||
)
|
||||
render :json => { :status => r['error'].nil? ? 'success' : r }
|
||||
render :json => { :status => r['error'].nil? ? 'success' : r }, :status => r['error'].nil? ? 200 : 403
|
||||
end
|
||||
|
||||
def scrobble
|
||||
@res = {}
|
||||
if params[:artist].nil? or params[:album].nil? or params[:name].nil?
|
||||
return render :json => { :status => 'bad params' }
|
||||
return render :json => { :status => 'bad params' }, status: 403
|
||||
end
|
||||
user = User.find_by_vkid(params[:mid])
|
||||
if user.lastfm_key.nil?
|
||||
|
@ -72,11 +72,11 @@ class LastFmController < ApplicationController
|
|||
:timestamp => Time.now.utc.to_i,
|
||||
:artist => params[:artist],
|
||||
:album => params[:album],
|
||||
:trackNumber => params[:position].to_i,
|
||||
:trackNumber => params[:position].gsub(/[a-z]/, "").to_i,
|
||||
:duration => params[:length].to_i,
|
||||
:sk => user.lastfm_key # Auth session key
|
||||
)
|
||||
render :json => { :status => r['error'].nil? ? 'success' : r }
|
||||
render :json => { :status => r['error'].nil? ? 'success' : r }, :status => r['error'].nil? ? 200 : 403
|
||||
end
|
||||
|
||||
def self.top_playlist artist
|
||||
|
|
|
@ -8,13 +8,18 @@ class PlaylistController < ApplicationController
|
|||
artist = Artist.find_by_id(params[:id])
|
||||
return if artist.nil?
|
||||
|
||||
playlist = Playlist.new(name: "#{artist.name}: Last.fm TOP 50", artist: artist)
|
||||
playlist = Playlist.new(name: "#{artist.name}: Last.fm TOP 50", artist: artist, pic_url: artist.pic_url)
|
||||
LastFM::Artist.get_top_tracks(artist: artist.name)["toptracks"]["track"].each do |track|
|
||||
tracks = Track.joins(:album, :artists).where(name: track["name"], "track_artists.artist_id" => artist.id)
|
||||
playlist.playlist_items << PlaylistItem.new(track_id: tracks.first.id) unless tracks.empty?
|
||||
end
|
||||
|
||||
cache_for 1.week
|
||||
render json: playlist, include: { playlist_items: { include: { track: { include: { artists: {} }}}}}
|
||||
compile_page(
|
||||
data: playlist.serialize,
|
||||
partial: "playlist/tracks",
|
||||
title: playlist.name,
|
||||
callback: {object: :player, action: :updateLibrary}
|
||||
)
|
||||
end
|
||||
end
|
||||
|
|
|
@ -2,4 +2,12 @@ class Playlist < ActiveRecord::Base
|
|||
belongs_to :user
|
||||
belongs_to :artist
|
||||
has_many :playlist_items, dependent: :destroy
|
||||
|
||||
def serialize
|
||||
data = {name: name, pic_url: pic_url, tracks: []}
|
||||
playlist_items.each do |item|
|
||||
data[:tracks] << item.track.serialize
|
||||
end
|
||||
data
|
||||
end
|
||||
end
|
||||
|
|
|
@ -9,4 +9,13 @@ class Album < ActiveRecord::Base
|
|||
def self.with_format f
|
||||
joins(:release_formats).where(:release_formats => { :hash => f.to_s })
|
||||
end
|
||||
|
||||
def serialize
|
||||
{
|
||||
name: name,
|
||||
pic_url: pic_url,
|
||||
year: year,
|
||||
tracks: tracks.map(&:serialize)
|
||||
}
|
||||
end
|
||||
end
|
||||
|
|
|
@ -19,6 +19,15 @@ class Artist < ActiveRecord::Base
|
|||
save!
|
||||
Delayed::Job.enqueue(LoadArtistJob.new(name))
|
||||
end
|
||||
|
||||
def serialize
|
||||
{
|
||||
name: name,
|
||||
pic_url: pic_url,
|
||||
desc: desc,
|
||||
albums: albums.map(&:serialize)
|
||||
}
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
|
|
|
@ -14,4 +14,18 @@ class Track < ActiveRecord::Base
|
|||
'0:00'
|
||||
end
|
||||
end
|
||||
|
||||
def serialize
|
||||
{
|
||||
id: id,
|
||||
artist: artists.first.name,
|
||||
album: album.name,
|
||||
position: position.to_s(36),
|
||||
name: name,
|
||||
length: length,
|
||||
duration: duration,
|
||||
available: available,
|
||||
album_pic: album.pic_url
|
||||
}
|
||||
end
|
||||
end
|
||||
|
|
|
@ -24,13 +24,13 @@
|
|||
%table.zebra-striped
|
||||
%tr
|
||||
%td
|
||||
%span.label.success.dynamic-playlist{ href: "", 'data-playlist' => "lastfm-top50/#{@artist.id}" }= t('player.set_playlist')
|
||||
%a.playlist-name{ href: "", 'data-playlist' => "lastfm-top50/#{@artist.id}" }= "#{@artist.name}: Last.fm TOP"
|
||||
%span.label.success.set-playlist{ href: "", 'data-playlist' => "lastfm-top50/#{@artist.id}" }= t('player.set_playlist')
|
||||
%a.page-link.playlist-name{ href: "/playlist/lastfm-top50/#{@artist.id}" }= "#{@artist.name}: Last.fm TOP"
|
||||
- @artist.playlists.each do |playlist|
|
||||
%tr
|
||||
- @artist.playlists.each do |playlist|
|
||||
%td
|
||||
%span.label.success.set-playlist{ href: "", 'data-playlist-id' => playlist.id }= t('player.set_playlist')
|
||||
%span.label.success.set-playlist{ href: "", 'data-playlist' => playlist.id }= t('player.set_playlist')
|
||||
%a.playlist-name{ href: "", 'data-playlist-id' => playlist.id }= playlist.name
|
||||
|
||||
- @artist.albums.each do |album|
|
||||
|
@ -38,7 +38,7 @@
|
|||
.span4.columns.art
|
||||
%img{ src: album.pic_url }
|
||||
.button-container
|
||||
%a.btn.add-album{ 'data-album-id' => album.id }= t('player.add')
|
||||
%a.btn.add-album{ 'data-tracks' => album.tracks.map(&:id).join(",") }= t('player.add')
|
||||
.span7.columns.tracks
|
||||
%h3{ 'data-album-id' => album.id }
|
||||
= album.name
|
||||
|
|
|
@ -17,14 +17,14 @@
|
|||
.topbar-inner
|
||||
.container
|
||||
%h3
|
||||
%a#logo{ :href => "#/" } BeatHaven
|
||||
%a#logo.page-link{ :href => "/" } BeatHaven
|
||||
%ul.nav
|
||||
%li
|
||||
%a{ :href => "http://blog.beathaven.org/", :target => "_blank" }= t('global.news')
|
||||
%li
|
||||
%a.about{ :href => "#/about/" }= t('global.about')
|
||||
%a.page-link.about{ :href => "/about/" }= t('global.about')
|
||||
%li
|
||||
%a.stat{ :href => "#/stat/" }= t('global.stat')
|
||||
%a.page-link.stat{ :href => "/stat/" }= t('global.stat')
|
||||
%form#search-form{ :action => "" }
|
||||
%input#search{ :type => "text", :placeholder => t('global.search') }
|
||||
#artist-load-spinner
|
||||
|
|
|
@ -0,0 +1,20 @@
|
|||
.row.album
|
||||
.span3.columns.art
|
||||
- unless @data[:pic_url].nil?
|
||||
%img{ src: @data[:pic_url] }
|
||||
.button-container
|
||||
%a.btn.add-album{ 'data-tracks' => @data[:tracks].map{|_|_[:id]}.join(",") }= t('player.play_all')
|
||||
.span8.columns.tracks
|
||||
%h3= @data[:name]
|
||||
%table.zebra-striped.tracklist
|
||||
- @data[:tracks].each do |track|
|
||||
%tr{ class: (track[:available] == false ? "unavailable" : nil) }
|
||||
%td.album-pic
|
||||
%img{ src: track[:album_pic]}
|
||||
%td.song-title
|
||||
%a.data.artist= track[:artist]
|
||||
—
|
||||
= track[:name]
|
||||
%td.song-duration
|
||||
.s-duration= (track[:duration] != '0:00' ? track[:duration] : ' '.html_safe)
|
||||
%span.label.success.s-add{ 'data-id' => track[:id] }= t('player.add_one')
|
|
@ -67,3 +67,5 @@ en:
|
|||
thumbs_down: "This is not the song I was looking for or the quality of sound is bad"
|
||||
set_playlist: "Play"
|
||||
playlists: "Playlists"
|
||||
play: "Play"
|
||||
play_all: "Play All"
|
||||
|
|
|
@ -67,3 +67,5 @@ ru:
|
|||
thumbs_down: "Это не та песня или качество звука плохое"
|
||||
set_playlist: "Играть"
|
||||
playlists: "Плей-листы"
|
||||
play: "Играть"
|
||||
play_all: "Добавить все"
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
class AddPicUrlToPlaylists < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :playlists, :pic_url, :string
|
||||
end
|
||||
end
|
|
@ -11,7 +11,7 @@
|
|||
#
|
||||
# It's strongly recommended to check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(:version => 20111126142207) do
|
||||
ActiveRecord::Schema.define(:version => 20111127102836) do
|
||||
|
||||
create_table "album_formats", :force => true do |t|
|
||||
t.integer "album_id"
|
||||
|
@ -156,6 +156,7 @@ ActiveRecord::Schema.define(:version => 20111126142207) do
|
|||
t.datetime "created_at"
|
||||
t.datetime "updated_at"
|
||||
t.integer "artist_id"
|
||||
t.string "pic_url"
|
||||
end
|
||||
|
||||
create_table "release_formats", :force => true do |t|
|
||||
|
|
Loading…
Reference in New Issue