AgileVentures / WebsiteOne

A website for Agile Ventures

Home Page:https://www.agileventures.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

E-learning: Add Courses table

mattlindsey opened this issue · comments

Add a Courses table, validations, and rspec tests

Snippets:

Console
rails generate scaffold Course title:string description:text
rake db:migrate
// course.rb
validates :title, presence: true
validates :description, presence: true, length: { :minimum => 5 }