diff options
author | tony <tony> | 2009-03-09 15:48:32 +0000 |
---|---|---|
committer | tony <tony> | 2009-03-09 15:48:32 +0000 |
commit | 828f73e10cea0e6be417d977c4b5f7f10ceae9b1 (patch) | |
tree | b08f263cab0320c063887946d0c968a9d155f7c2 /app/models/holiday.rb | |
parent | 0c2f263b6d3117fbb38740432284b31a0a474164 (diff) |
Update models and schema for new table
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 |