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.

197 lines
9.0 KiB

8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
  1. # This file is auto-generated from the current state of the database. Instead
  2. # of editing this file, please use the migrations feature of Active Record to
  3. # incrementally modify your database, and then regenerate this schema definition.
  4. #
  5. # Note that this schema.rb definition is the authoritative source for your
  6. # database schema. If you need to create the application database on another
  7. # system, you should be using db:schema:load, not running all the migrations
  8. # from scratch. The latter is a flawed and unsustainable approach (the more migrations
  9. # you'll amass, the slower it'll run and the greater likelihood for issues).
  10. #
  11. # It's strongly recommended that you check this file into your version control system.
  12. ActiveRecord::Schema.define(version: 20161009120834) do
  13. # These are extensions that must be enabled in order to support this database
  14. enable_extension "plpgsql"
  15. create_table "accounts", force: :cascade do |t|
  16. t.string "username", default: "", null: false
  17. t.string "domain"
  18. t.string "secret", default: "", null: false
  19. t.text "private_key"
  20. t.text "public_key", default: "", null: false
  21. t.string "remote_url", default: "", null: false
  22. t.string "salmon_url", default: "", null: false
  23. t.string "hub_url", default: "", null: false
  24. t.datetime "created_at", null: false
  25. t.datetime "updated_at", null: false
  26. t.text "note", default: "", null: false
  27. t.string "display_name", default: "", null: false
  28. t.string "uri", default: "", null: false
  29. t.string "url"
  30. t.string "avatar_file_name"
  31. t.string "avatar_content_type"
  32. t.integer "avatar_file_size"
  33. t.datetime "avatar_updated_at"
  34. t.string "header_file_name"
  35. t.string "header_content_type"
  36. t.integer "header_file_size"
  37. t.datetime "header_updated_at"
  38. t.string "avatar_remote_url"
  39. t.datetime "subscription_expires_at"
  40. t.index ["username", "domain"], name: "index_accounts_on_username_and_domain", unique: true, using: :btree
  41. end
  42. create_table "blocks", force: :cascade do |t|
  43. t.integer "account_id", null: false
  44. t.integer "target_account_id", null: false
  45. t.datetime "created_at", null: false
  46. t.datetime "updated_at", null: false
  47. t.index ["account_id", "target_account_id"], name: "index_blocks_on_account_id_and_target_account_id", unique: true, using: :btree
  48. end
  49. create_table "domain_blocks", force: :cascade do |t|
  50. t.string "domain", default: "", null: false
  51. t.datetime "created_at", null: false
  52. t.datetime "updated_at", null: false
  53. t.index ["domain"], name: "index_domain_blocks_on_domain", unique: true, using: :btree
  54. end
  55. create_table "favourites", force: :cascade do |t|
  56. t.integer "account_id", null: false
  57. t.integer "status_id", null: false
  58. t.datetime "created_at", null: false
  59. t.datetime "updated_at", null: false
  60. t.index ["account_id", "status_id"], name: "index_favourites_on_account_id_and_status_id", unique: true, using: :btree
  61. end
  62. create_table "follows", force: :cascade do |t|
  63. t.integer "account_id", null: false
  64. t.integer "target_account_id", null: false
  65. t.datetime "created_at", null: false
  66. t.datetime "updated_at", null: false
  67. t.index ["account_id", "target_account_id"], name: "index_follows_on_account_id_and_target_account_id", unique: true, using: :btree
  68. end
  69. create_table "media_attachments", force: :cascade do |t|
  70. t.integer "status_id"
  71. t.string "file_file_name"
  72. t.string "file_content_type"
  73. t.integer "file_file_size"
  74. t.datetime "file_updated_at"
  75. t.string "remote_url", default: "", null: false
  76. t.integer "account_id"
  77. t.datetime "created_at", null: false
  78. t.datetime "updated_at", null: false
  79. t.index ["status_id"], name: "index_media_attachments_on_status_id", using: :btree
  80. end
  81. create_table "mentions", force: :cascade do |t|
  82. t.integer "account_id"
  83. t.integer "status_id"
  84. t.datetime "created_at", null: false
  85. t.datetime "updated_at", null: false
  86. t.index ["account_id", "status_id"], name: "index_mentions_on_account_id_and_status_id", unique: true, using: :btree
  87. end
  88. create_table "oauth_access_grants", force: :cascade do |t|
  89. t.integer "resource_owner_id", null: false
  90. t.integer "application_id", null: false
  91. t.string "token", null: false
  92. t.integer "expires_in", null: false
  93. t.text "redirect_uri", null: false
  94. t.datetime "created_at", null: false
  95. t.datetime "revoked_at"
  96. t.string "scopes"
  97. t.index ["token"], name: "index_oauth_access_grants_on_token", unique: true, using: :btree
  98. end
  99. create_table "oauth_access_tokens", force: :cascade do |t|
  100. t.integer "resource_owner_id"
  101. t.integer "application_id"
  102. t.string "token", null: false
  103. t.string "refresh_token"
  104. t.integer "expires_in"
  105. t.datetime "revoked_at"
  106. t.datetime "created_at", null: false
  107. t.string "scopes"
  108. t.index ["refresh_token"], name: "index_oauth_access_tokens_on_refresh_token", unique: true, using: :btree
  109. t.index ["resource_owner_id"], name: "index_oauth_access_tokens_on_resource_owner_id", using: :btree
  110. t.index ["token"], name: "index_oauth_access_tokens_on_token", unique: true, using: :btree
  111. end
  112. create_table "oauth_applications", force: :cascade do |t|
  113. t.string "name", null: false
  114. t.string "uid", null: false
  115. t.string "secret", null: false
  116. t.text "redirect_uri", null: false
  117. t.string "scopes", default: "", null: false
  118. t.datetime "created_at"
  119. t.datetime "updated_at"
  120. t.boolean "superapp", default: false, null: false
  121. t.index ["uid"], name: "index_oauth_applications_on_uid", unique: true, using: :btree
  122. end
  123. create_table "settings", force: :cascade do |t|
  124. t.string "var", null: false
  125. t.text "value"
  126. t.string "target_type", null: false
  127. t.integer "target_id", null: false
  128. t.datetime "created_at"
  129. t.datetime "updated_at"
  130. t.index ["target_type", "target_id", "var"], name: "index_settings_on_target_type_and_target_id_and_var", unique: true, using: :btree
  131. t.index ["target_type", "target_id"], name: "index_settings_on_target_type_and_target_id", using: :btree
  132. end
  133. create_table "statuses", force: :cascade do |t|
  134. t.string "uri"
  135. t.integer "account_id", null: false
  136. t.text "text", default: "", null: false
  137. t.datetime "created_at", null: false
  138. t.datetime "updated_at", null: false
  139. t.integer "in_reply_to_id"
  140. t.integer "reblog_of_id"
  141. t.string "url"
  142. t.index ["account_id"], name: "index_statuses_on_account_id", using: :btree
  143. t.index ["in_reply_to_id"], name: "index_statuses_on_in_reply_to_id", using: :btree
  144. t.index ["reblog_of_id"], name: "index_statuses_on_reblog_of_id", using: :btree
  145. t.index ["uri"], name: "index_statuses_on_uri", unique: true, using: :btree
  146. end
  147. create_table "stream_entries", force: :cascade do |t|
  148. t.integer "account_id"
  149. t.integer "activity_id"
  150. t.string "activity_type"
  151. t.datetime "created_at", null: false
  152. t.datetime "updated_at", null: false
  153. t.index ["account_id"], name: "index_stream_entries_on_account_id", using: :btree
  154. t.index ["activity_id", "activity_type"], name: "index_stream_entries_on_activity_id_and_activity_type", using: :btree
  155. end
  156. create_table "users", force: :cascade do |t|
  157. t.string "email", default: "", null: false
  158. t.integer "account_id", null: false
  159. t.datetime "created_at", null: false
  160. t.datetime "updated_at", null: false
  161. t.string "encrypted_password", default: "", null: false
  162. t.string "reset_password_token"
  163. t.datetime "reset_password_sent_at"
  164. t.datetime "remember_created_at"
  165. t.integer "sign_in_count", default: 0, null: false
  166. t.datetime "current_sign_in_at"
  167. t.datetime "last_sign_in_at"
  168. t.inet "current_sign_in_ip"
  169. t.inet "last_sign_in_ip"
  170. t.boolean "admin", default: false
  171. t.string "confirmation_token"
  172. t.datetime "confirmed_at"
  173. t.datetime "confirmation_sent_at"
  174. t.string "unconfirmed_email"
  175. t.index ["account_id"], name: "index_users_on_account_id", using: :btree
  176. t.index ["confirmation_token"], name: "index_users_on_confirmation_token", unique: true, using: :btree
  177. t.index ["email"], name: "index_users_on_email", unique: true, using: :btree
  178. t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true, using: :btree
  179. end
  180. end