1
0
Fork 0
oldhaven/db/migrate/20110920152432_create_local...

14 lines
265 B
Ruby

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