oldhaven/db/migrate/20110920152432_create_local_brainz_releases.rb

14 lines
265 B
Ruby
Raw Normal View History

2011-09-21 00:30:42 +04:00
class CreateLocalBrainzReleases < ActiveRecord::Migration
def change
create_table :local_brainz_releases do |t|
t.string :mbid
t.string :title
t.string :status
t.date :date
t.string :country
t.timestamps
end
end
end