class CreateProjects
Public Instance Methods
change()
click to toggle source
# File lib/trackington/db/migrate/20160209100247_create_projects.rb, line 2 def change create_table :projects do |t| t.string :description t.string :title t.boolean :public, default: false end end