diff options
author | francis <francis> | 2007-10-24 11:39:37 +0000 |
---|---|---|
committer | francis <francis> | 2007-10-24 11:39:37 +0000 |
commit | bc3b0c2e181697f240d3f8c863c4cdb03d4ca88d (patch) | |
tree | 2ab885540aa8a6586848f16ad719aa396d8146c4 /db | |
parent | 8277d14fc923089bef47ac92520fabec3dea64b7 (diff) |
Read in mySociety style configuration file, if it is there (use sensible defaults if not).
Actually send request to public body, or fake address on staging site.
Fix minor bug with sending front page form public body to new request page.
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/012_add_sent_outgoing_message.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/db/migrate/012_add_sent_outgoing_message.rb b/db/migrate/012_add_sent_outgoing_message.rb new file mode 100644 index 000000000..f99c4d55f --- /dev/null +++ b/db/migrate/012_add_sent_outgoing_message.rb @@ -0,0 +1,8 @@ +class AddSentOutgoingMessage < ActiveRecord::Migration + def self.up + add_column :outgiong_messages, :sent_at, :datetime + end + + def self.down + end +end |