Skip to content

Instantly share code, notes, and snippets.

@JoeyBy
Last active June 3, 2016 21:48
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 JoeyBy/877775153d567985ed7e211af31287a4 to your computer and use it in GitHub Desktop.
Save JoeyBy/877775153d567985ed7e211af31287a4 to your computer and use it in GitHub Desktop.
class CreateTasks < ActiveRecord::Migration
def change
create_table :tasks do |t|
t.string :title
t.text :description
t.timestamps null: false
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment