class Syobocal::DB::TitleLookup::Mapper

Public Class Methods

new() click to toggle source
# File lib/syobocal/db.rb, line 67
def initialize
  @map = {
    "TID" => :int,
    "LastUpdate" => :time,
    "Title" => :str,
    "ShortTitle" => :str,
    "TitleYomi" => :str,
    "TitleEN" => :str,
    "Comment" => :str,
    "Cat" => :int,
    "TitleFlag" => :int,
    "FirstYear" => :int,
    "FirstMonth" => :int,
    "FirstEndYear" => :int,
    "FirstEndMonth" => :int,
    "FirstCh" => :str,
    "Keywords" => :str,
    "UserPoint" => :int,
    "UserPointRank" => :int,
    "SubTitles" => :str,
  }
end