Created
June 25, 2011 20:10
-
-
Save anonymous/1046850 to your computer and use it in GitHub Desktop.
Revisions
-
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ class CreateBundles < ActiveRecord::Migration def self.up create_table :bundles do |t| t.string :bundle_id, :null => false t.string :title, :null => false t.timestamps end end def self.down drop_table :bundles end end