11 lines
173 B
Ruby
11 lines
173 B
Ruby
class CreateGenres < ActiveRecord::Migration
|
|
def change
|
|
create_table :genres do |t|
|
|
t.string :rovi_id
|
|
t.string :name
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|