diff options
Diffstat (limited to 'app/models/holiday.rb')
-rw-r--r-- | app/models/holiday.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/app/models/holiday.rb b/app/models/holiday.rb index de261bbc9..478e0b086 100644 --- a/app/models/holiday.rb +++ b/app/models/holiday.rb @@ -1,2 +1,21 @@ +# == Schema Information +# Schema version: 74 +# +# Table name: holidays +# +# id :integer not null, primary key +# day :date +# description :text +# + +# models/holiday.rb: +# Store details on public holidays on which the clock for answering FOI +# requests do not run +# +# Copyright (c) 2009 UK Citizens Online Democracy. All rights reserved. +# Email: francis@mysociety.org; WWW: http://www.mysociety.org/ +# +# $Id: holiday.rb,v 1.2 2009-03-09 15:48:32 tony Exp $ + class Holiday < ActiveRecord::Base end |