Created
October 8, 2011 18:55
-
-
Save knwang/1272700 to your computer and use it in GitHub Desktop.
Proofing_oven: add full_name column migration
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 characters
| class AddFullNameColumnToCandidates < ActiveRecord::Migration | |
| def self.up | |
| add_column :candidates, :full_name, :string | |
| end | |
| def self.down | |
| remove_column :candidates, :full_name | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment