14 lines
265 B
Ruby
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
|