Skip to content

Instantly share code, notes, and snippets.

@gmcintire
Created August 24, 2010 17:30
Show Gist options
  • Save gmcintire/547928 to your computer and use it in GitHub Desktop.
Save gmcintire/547928 to your computer and use it in GitHub Desktop.
class AddPublishedAtToTrainingAtps < ActiveRecord::Migration
def self.up
add_column :training_atps, :published_at, :timestamp
end
def self.down
remove_column :training_atps, :published_at
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment