diff options
author | francis <francis> | 2008-01-24 15:53:14 +0000 |
---|---|---|
committer | francis <francis> | 2008-01-24 15:53:14 +0000 |
commit | 4cee79a9c722f5a9058f4d0e4390847f05aa2c3e (patch) | |
tree | 56eae11709af3711399b66593f15523ab2c4359a /app/models/info_request_event.rb | |
parent | 1ce9966115a737712d7b7c040e0d47a695479202 (diff) |
Add NOT NULL constraints into the database everywhere
Diffstat (limited to 'app/models/info_request_event.rb')
-rw-r--r-- | app/models/info_request_event.rb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/app/models/info_request_event.rb b/app/models/info_request_event.rb index 9e4d8f6b9..320ebd7e8 100644 --- a/app/models/info_request_event.rb +++ b/app/models/info_request_event.rb @@ -1,13 +1,13 @@ # == Schema Information -# Schema version: 25 +# Schema version: 26 # # Table name: info_request_events # # id :integer not null, primary key -# info_request_id :integer -# event_type :text -# params_yaml :text -# created_at :datetime +# info_request_id :integer not null +# event_type :text not null +# params_yaml :text not null +# created_at :datetime not null # # models/info_request_event.rb: @@ -15,7 +15,7 @@ # Copyright (c) 2007 UK Citizens Online Democracy. All rights reserved. # Email: francis@mysociety.org; WWW: http://www.mysociety.org/ # -# $Id: info_request_event.rb,v 1.6 2008-01-21 11:08:16 francis Exp $ +# $Id: info_request_event.rb,v 1.7 2008-01-24 15:53:15 francis Exp $ class InfoRequestEvent < ActiveRecord::Base belongs_to :info_request |