Skip to content

Instantly share code, notes, and snippets.

@Papillard
Created April 22, 2014 09:35
Show Gist options
  • Save Papillard/11171966 to your computer and use it in GitHub Desktop.
Save Papillard/11171966 to your computer and use it in GitHub Desktop.
Migration
class CreatePosts < ActiveRecord::Migration
def up
create_table :posts do |t|
t.string :name
t.datetime :date
t.string :source_url
t.integer :rating
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment