Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. class AddDefaultValueToIsCompleted < ActiveRecord::Migration[5.2]
  2. def change
  3. remove_column :todos, :isCompleted
  4. add_column :todos, :isCompleted, :boolean, default: false
  5. end
  6. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement