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