master
 1class CreateCreations < ActiveRecord::Migration
 2  def self.up
 3    create_table :creations do |t|
 4      t.string :name
 5      t.text :story
 6
 7      t.timestamps
 8    end
 9  end
10
11  def self.down
12    drop_table :creations
13  end
14end