Discogs releases parse

This commit is contained in:
Gregory Eremin
2011-09-22 19:40:44 +04:00
parent 7a3444d103
commit e235ad7fc5
11 changed files with 107 additions and 6 deletions
@@ -0,0 +1,9 @@
class CreateGenres < ActiveRecord::Migration
def change
create_table :genres do |t|
t.string :name
t.timestamps
end
end
end
@@ -0,0 +1,9 @@
class CreateStyles < ActiveRecord::Migration
def change
create_table :styles do |t|
t.string :name
t.timestamps
end
end
end