GeoRSS aggregator and Layar augmented reality server
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

51 lines
1.7 KiB

  1. # encoding: UTF-8
  2. # This file is auto-generated from the current state of the database. Instead
  3. # of editing this file, please use the migrations feature of Active Record to
  4. # incrementally modify your database, and then regenerate this schema definition.
  5. #
  6. # Note that this schema.rb definition is the authoritative source for your
  7. # database schema. If you need to create the application database on another
  8. # system, you should be using db:schema:load, not running all the migrations
  9. # from scratch. The latter is a flawed and unsustainable approach (the more migrations
  10. # you'll amass, the slower it'll run and the greater likelihood for issues).
  11. #
  12. # It's strongly recommended to check this file into your version control system.
  13. ActiveRecord::Schema.define(:version => 20130222125833) do
  14. create_table "feeds", :force => true do |t|
  15. t.string "title"
  16. t.string "feed_url"
  17. t.string "url"
  18. t.string "description"
  19. t.string "generator"
  20. t.datetime "created_at", :null => false
  21. t.datetime "updated_at", :null => false
  22. t.datetime "last_fetched"
  23. end
  24. create_table "posts", :force => true do |t|
  25. t.string "title"
  26. t.string "url"
  27. t.string "author"
  28. t.text "summary"
  29. t.text "content"
  30. t.decimal "lat"
  31. t.decimal "lon"
  32. t.integer "feed_id"
  33. t.datetime "created_at", :null => false
  34. t.datetime "updated_at", :null => false
  35. t.string "guid"
  36. t.datetime "published"
  37. end
  38. create_table "users", :force => true do |t|
  39. t.string "email"
  40. t.string "crypted_password"
  41. t.string "salt"
  42. t.datetime "created_at", :null => false
  43. t.datetime "updated_at", :null => false
  44. end
  45. end