Skip to content

Instantly share code, notes, and snippets.

@seivan
Created March 14, 2009 15:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seivan/79089 to your computer and use it in GitHub Desktop.
Save seivan/79089 to your computer and use it in GitHub Desktop.
class CreateBlogPosts < ActiveRecord::Migration
def self.up
create_table :blog_posts do |t|
t.string :subject
t.text :content
t.string :tag
t.timestamps
end
end
def self.down
drop_table :blog_posts
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment