diff options
author | francis <francis> | 2007-08-04 11:10:25 +0000 |
---|---|---|
committer | francis <francis> | 2007-08-04 11:10:25 +0000 |
commit | 4016d8188af7b85347a032f073cf62a39995a8f8 (patch) | |
tree | 6b4a0707adde6073507865e802e6e4750a668d7b /db/schema.rb | |
parent | 4201bb9674ac51e153a949d5c1edafd558aaeea2 (diff) |
Skeletal model for an FOI request.
Rubbishy display of first form.
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb index ab31f97d6..de6ac6216 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -2,7 +2,12 @@ # migrations feature of ActiveRecord to incrementally modify your database, and # then regenerate this schema definition. -ActiveRecord::Schema.define(:version => 2) do +ActiveRecord::Schema.define(:version => 4) do + + create_table "info_requests", :force => true do |t| + t.column "title", :text + t.column "user_id", :integer + end create_table "sessions", :force => true do |t| t.column "session_id", :string |