ikuseiGmbH/Goldencobra

View on GitHub
app/models/goldencobra/help.rb

Summary

Maintainability
A
0 mins
Test Coverage
# encoding: utf-8
# == Schema Information
#
# Table name: goldencobra_helps
#
#  id          :integer          not null, primary key
#  title       :string(255)
#  description :text(65535)
#  url         :string(255)
#  created_at  :datetime         not null
#  updated_at  :datetime         not null
#

module Goldencobra
  class Help < ActiveRecord::Base
    attr_accessible :title, :description, :url
  end
end