Skip to content

Instantly share code, notes, and snippets.

@joshed-io
Created October 28, 2010 07:56
Show Gist options
  • Select an option

  • Save joshed-io/650874 to your computer and use it in GitHub Desktop.

Select an option

Save joshed-io/650874 to your computer and use it in GitHub Desktop.
class CreateModelVersions < ActiveRecord::Migration
def self.up
create_table :model_versions do |t|
t.string :model_name
t.integer :version
t.timestamps
end
end
def self.down
drop_table :model_versions
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment