Skip to content

Instantly share code, notes, and snippets.

@wwwisie
Last active August 31, 2020 21:03
Show Gist options
  • Select an option

  • Save wwwisie/5dd87dffd527e63fa456dd9700899cab to your computer and use it in GitHub Desktop.

Select an option

Save wwwisie/5dd87dffd527e63fa456dd9700899cab to your computer and use it in GitHub Desktop.
Add :show to database

Console: rails g migration add_show_to_section_elements show:integer

Adentro del migration file, es agregar: , :default => 0, :null => false

class AddShowToSectionElements < ActiveRecord::Migration[5.2] def change add_column :section_elements, :show, :integer, :default => 0, :null => false end end

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment