view .svn/pristine/65/653ab59d743f1df845b36eb098daf383b44a28a4.svn-base @ 1539:22d57b0e0a77 live

OK, this script works now, but it should be using the API
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Thu, 21 May 2015 17:31:06 +0100
parents 261b3d9a4903
children
line wrap: on
line source
class AddRepositoriesCreatedOn < ActiveRecord::Migration
  def up
    add_column :repositories, :created_on, :timestamp
  end

  def down
    remove_column :repositories, :created_on
  end
end