class CreateTasks < ActiveRecord::Migration[5.1] def change create_table :tasks do |t| t.string :title t.boolean :completed t.timestamps end end end