Massive Cleanup
[cs356-p2-videostore.git] / db / migrate / 030_create_game_genres.rb
1 class CreateGameGenres < ActiveRecord::Migration
2   def self.up
3     create_table :game_genres do |t|
4       t.column :name, :string, :null => false
5     end
6   end
7
8   def self.down
9     drop_table :game_genres
10   end
11 end