Class: CreateEpisodes
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- CreateEpisodes
- Defined in:
- lib/generators/tvdb/templates/episode.rb
Class Method Summary collapse
Class Method Details
.down ⇒ Object
14 15 16 |
# File 'lib/generators/tvdb/templates/episode.rb', line 14 def self.down drop_table :episodes end |
.up ⇒ Object
2 3 4 5 6 7 8 9 10 11 12 |
# File 'lib/generators/tvdb/templates/episode.rb', line 2 def self.up create_table :episodes do |t| t.string :seasonNumber t.references :show, index: true t.string :name t.string :firstAired t.text :overview t. end end |