Skip to content

Instantly share code, notes, and snippets.

@Znarkus
Created January 19, 2011 11:34
Show Gist options
  • Save Znarkus/786040 to your computer and use it in GitHub Desktop.
Save Znarkus/786040 to your computer and use it in GitHub Desktop.
class CreateProducts < ActiveRecord::Migration
def self.up
create_table :products do |t|
t.string :name
t.text :description
t.timestamps
end
end
def self.down
drop_table :products
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment