Skip to content

Instantly share code, notes, and snippets.

@romariorios
Created October 27, 2009 04:27
Show Gist options
  • Save romariorios/219319 to your computer and use it in GitHub Desktop.
Save romariorios/219319 to your computer and use it in GitHub Desktop.
class CreatePosts < ActiveRecord::Migration
def self.up
create_table :posts do |t|
t.string :author
t.string :title
t.string :text
t.timestamps
end
end
def self.down
drop_table :posts
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment