2016-02-21 06:53:20 +09:00
|
|
|
# This file is auto-generated from the current state of the database. Instead
|
|
|
|
# of editing this file, please use the migrations feature of Active Record to
|
|
|
|
# incrementally modify your database, and then regenerate this schema definition.
|
|
|
|
#
|
|
|
|
# Note that this schema.rb definition is the authoritative source for your
|
|
|
|
# database schema. If you need to create the application database on another
|
|
|
|
# system, you should be using db:schema:load, not running all the migrations
|
|
|
|
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
|
|
|
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
|
|
|
#
|
|
|
|
# It's strongly recommended that you check this file into your version control system.
|
|
|
|
|
2017-02-15 04:59:26 +09:00
|
|
|
ActiveRecord::Schema.define(version: 20170214110202) do
|
2016-02-21 06:53:20 +09:00
|
|
|
|
|
|
|
# These are extensions that must be enabled in order to support this database
|
|
|
|
enable_extension "plpgsql"
|
|
|
|
|
|
|
|
create_table "accounts", force: :cascade do |t|
|
2016-10-28 02:33:04 +09:00
|
|
|
t.string "username", default: "", null: false
|
2016-02-21 06:53:20 +09:00
|
|
|
t.string "domain"
|
2016-10-28 02:33:04 +09:00
|
|
|
t.string "secret", default: "", null: false
|
2016-02-21 06:53:20 +09:00
|
|
|
t.text "private_key"
|
2016-10-28 02:33:04 +09:00
|
|
|
t.text "public_key", default: "", null: false
|
|
|
|
t.string "remote_url", default: "", null: false
|
|
|
|
t.string "salmon_url", default: "", null: false
|
|
|
|
t.string "hub_url", default: "", null: false
|
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.datetime "updated_at", null: false
|
|
|
|
t.text "note", default: "", null: false
|
|
|
|
t.string "display_name", default: "", null: false
|
|
|
|
t.string "uri", default: "", null: false
|
2016-02-24 03:17:37 +09:00
|
|
|
t.string "url"
|
2016-02-28 08:02:59 +09:00
|
|
|
t.string "avatar_file_name"
|
|
|
|
t.string "avatar_content_type"
|
|
|
|
t.integer "avatar_file_size"
|
|
|
|
t.datetime "avatar_updated_at"
|
2016-03-13 04:47:22 +09:00
|
|
|
t.string "header_file_name"
|
|
|
|
t.string "header_content_type"
|
|
|
|
t.integer "header_file_size"
|
|
|
|
t.datetime "header_updated_at"
|
2016-03-23 05:05:23 +09:00
|
|
|
t.string "avatar_remote_url"
|
2016-09-20 07:39:03 +09:00
|
|
|
t.datetime "subscription_expires_at"
|
2016-10-28 02:33:04 +09:00
|
|
|
t.boolean "silenced", default: false, null: false
|
2016-12-06 06:59:30 +09:00
|
|
|
t.boolean "suspended", default: false, null: false
|
2016-12-23 05:34:19 +09:00
|
|
|
t.boolean "locked", default: false, null: false
|
2016-08-18 00:56:23 +09:00
|
|
|
t.index ["username", "domain"], name: "index_accounts_on_username_and_domain", unique: true, using: :btree
|
2016-02-21 06:53:20 +09:00
|
|
|
end
|
|
|
|
|
2016-10-04 00:11:54 +09:00
|
|
|
create_table "blocks", force: :cascade do |t|
|
|
|
|
t.integer "account_id", null: false
|
|
|
|
t.integer "target_account_id", null: false
|
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.datetime "updated_at", null: false
|
|
|
|
t.index ["account_id", "target_account_id"], name: "index_blocks_on_account_id_and_target_account_id", unique: true, using: :btree
|
|
|
|
end
|
|
|
|
|
2016-10-09 21:48:43 +09:00
|
|
|
create_table "domain_blocks", force: :cascade do |t|
|
2017-01-24 05:36:08 +09:00
|
|
|
t.string "domain", default: "", null: false
|
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.datetime "updated_at", null: false
|
|
|
|
t.integer "severity", default: 0
|
|
|
|
t.boolean "reject_media"
|
2016-10-09 21:48:43 +09:00
|
|
|
t.index ["domain"], name: "index_domain_blocks_on_domain", unique: true, using: :btree
|
|
|
|
end
|
|
|
|
|
2016-02-24 03:17:37 +09:00
|
|
|
create_table "favourites", force: :cascade do |t|
|
|
|
|
t.integer "account_id", null: false
|
|
|
|
t.integer "status_id", null: false
|
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.datetime "updated_at", null: false
|
2016-08-18 00:56:23 +09:00
|
|
|
t.index ["account_id", "status_id"], name: "index_favourites_on_account_id_and_status_id", unique: true, using: :btree
|
2016-02-24 03:17:37 +09:00
|
|
|
end
|
|
|
|
|
2016-12-23 07:03:57 +09:00
|
|
|
create_table "follow_requests", force: :cascade do |t|
|
|
|
|
t.integer "account_id", null: false
|
|
|
|
t.integer "target_account_id", null: false
|
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.datetime "updated_at", null: false
|
|
|
|
t.index ["account_id", "target_account_id"], name: "index_follow_requests_on_account_id_and_target_account_id", unique: true, using: :btree
|
|
|
|
end
|
|
|
|
|
2016-02-23 00:00:20 +09:00
|
|
|
create_table "follows", force: :cascade do |t|
|
|
|
|
t.integer "account_id", null: false
|
|
|
|
t.integer "target_account_id", null: false
|
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.datetime "updated_at", null: false
|
2016-08-18 00:56:23 +09:00
|
|
|
t.index ["account_id", "target_account_id"], name: "index_follows_on_account_id_and_target_account_id", unique: true, using: :btree
|
2016-02-23 00:00:20 +09:00
|
|
|
end
|
|
|
|
|
2016-09-06 00:46:36 +09:00
|
|
|
create_table "media_attachments", force: :cascade do |t|
|
|
|
|
t.integer "status_id"
|
|
|
|
t.string "file_file_name"
|
|
|
|
t.string "file_content_type"
|
|
|
|
t.integer "file_file_size"
|
|
|
|
t.datetime "file_updated_at"
|
|
|
|
t.string "remote_url", default: "", null: false
|
|
|
|
t.integer "account_id"
|
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.datetime "updated_at", null: false
|
2017-01-06 08:21:12 +09:00
|
|
|
t.string "shortcode"
|
|
|
|
t.index ["shortcode"], name: "index_media_attachments_on_shortcode", unique: true, using: :btree
|
2016-09-06 00:46:36 +09:00
|
|
|
t.index ["status_id"], name: "index_media_attachments_on_status_id", using: :btree
|
|
|
|
end
|
|
|
|
|
2016-02-25 08:17:01 +09:00
|
|
|
create_table "mentions", force: :cascade do |t|
|
|
|
|
t.integer "account_id"
|
|
|
|
t.integer "status_id"
|
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.datetime "updated_at", null: false
|
2016-08-18 00:56:23 +09:00
|
|
|
t.index ["account_id", "status_id"], name: "index_mentions_on_account_id_and_status_id", unique: true, using: :btree
|
2016-02-25 08:17:01 +09:00
|
|
|
end
|
|
|
|
|
2016-11-20 08:33:02 +09:00
|
|
|
create_table "notifications", force: :cascade do |t|
|
|
|
|
t.integer "account_id"
|
|
|
|
t.integer "activity_id"
|
|
|
|
t.string "activity_type"
|
2016-12-04 04:04:19 +09:00
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.datetime "updated_at", null: false
|
|
|
|
t.integer "from_account_id"
|
2016-11-21 03:39:18 +09:00
|
|
|
t.index ["account_id", "activity_id", "activity_type"], name: "account_activity", unique: true, using: :btree
|
2016-11-20 08:33:02 +09:00
|
|
|
end
|
|
|
|
|
2016-03-07 20:42:33 +09:00
|
|
|
create_table "oauth_access_grants", force: :cascade do |t|
|
2016-03-11 09:58:55 +09:00
|
|
|
t.integer "resource_owner_id", null: false
|
|
|
|
t.integer "application_id", null: false
|
|
|
|
t.string "token", null: false
|
|
|
|
t.integer "expires_in", null: false
|
|
|
|
t.text "redirect_uri", null: false
|
|
|
|
t.datetime "created_at", null: false
|
2016-03-07 20:42:33 +09:00
|
|
|
t.datetime "revoked_at"
|
|
|
|
t.string "scopes"
|
2016-08-18 00:56:23 +09:00
|
|
|
t.index ["token"], name: "index_oauth_access_grants_on_token", unique: true, using: :btree
|
2016-03-07 20:42:33 +09:00
|
|
|
end
|
|
|
|
|
|
|
|
create_table "oauth_access_tokens", force: :cascade do |t|
|
|
|
|
t.integer "resource_owner_id"
|
|
|
|
t.integer "application_id"
|
|
|
|
t.string "token", null: false
|
|
|
|
t.string "refresh_token"
|
|
|
|
t.integer "expires_in"
|
|
|
|
t.datetime "revoked_at"
|
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.string "scopes"
|
2016-08-18 00:56:23 +09:00
|
|
|
t.index ["refresh_token"], name: "index_oauth_access_tokens_on_refresh_token", unique: true, using: :btree
|
|
|
|
t.index ["resource_owner_id"], name: "index_oauth_access_tokens_on_resource_owner_id", using: :btree
|
|
|
|
t.index ["token"], name: "index_oauth_access_tokens_on_token", unique: true, using: :btree
|
2016-03-07 20:42:33 +09:00
|
|
|
end
|
|
|
|
|
|
|
|
create_table "oauth_applications", force: :cascade do |t|
|
2016-08-27 02:12:19 +09:00
|
|
|
t.string "name", null: false
|
|
|
|
t.string "uid", null: false
|
|
|
|
t.string "secret", null: false
|
|
|
|
t.text "redirect_uri", null: false
|
|
|
|
t.string "scopes", default: "", null: false
|
2016-03-07 20:42:33 +09:00
|
|
|
t.datetime "created_at"
|
|
|
|
t.datetime "updated_at"
|
2016-08-27 02:12:19 +09:00
|
|
|
t.boolean "superapp", default: false, null: false
|
2017-01-15 06:58:50 +09:00
|
|
|
t.string "website"
|
2016-08-18 00:56:23 +09:00
|
|
|
t.index ["uid"], name: "index_oauth_applications_on_uid", unique: true, using: :btree
|
2016-03-07 20:42:33 +09:00
|
|
|
end
|
|
|
|
|
2017-01-20 09:00:14 +09:00
|
|
|
create_table "preview_cards", force: :cascade do |t|
|
|
|
|
t.integer "status_id"
|
|
|
|
t.string "url", default: "", null: false
|
|
|
|
t.string "title"
|
|
|
|
t.string "description"
|
|
|
|
t.string "image_file_name"
|
|
|
|
t.string "image_content_type"
|
|
|
|
t.integer "image_file_size"
|
|
|
|
t.datetime "image_updated_at"
|
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.datetime "updated_at", null: false
|
|
|
|
t.index ["status_id"], name: "index_preview_cards_on_status_id", unique: true, using: :btree
|
|
|
|
end
|
|
|
|
|
2017-02-15 04:59:26 +09:00
|
|
|
create_table "reports", force: :cascade do |t|
|
|
|
|
t.integer "account_id", null: false
|
|
|
|
t.integer "target_account_id", null: false
|
|
|
|
t.integer "status_ids", default: [], null: false, array: true
|
|
|
|
t.text "comment", default: "", null: false
|
|
|
|
t.boolean "action_taken", default: false, null: false
|
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.datetime "updated_at", null: false
|
|
|
|
end
|
|
|
|
|
2016-10-07 20:17:56 +09:00
|
|
|
create_table "settings", force: :cascade do |t|
|
2017-01-13 04:46:24 +09:00
|
|
|
t.string "var", null: false
|
2016-10-07 20:17:56 +09:00
|
|
|
t.text "value"
|
2017-01-13 04:46:24 +09:00
|
|
|
t.string "thing_type"
|
|
|
|
t.integer "thing_id"
|
2016-10-07 20:17:56 +09:00
|
|
|
t.datetime "created_at"
|
|
|
|
t.datetime "updated_at"
|
2017-01-13 04:46:24 +09:00
|
|
|
t.index ["thing_type", "thing_id", "var"], name: "index_settings_on_thing_type_and_thing_id_and_var", unique: true, using: :btree
|
2016-10-07 20:17:56 +09:00
|
|
|
end
|
|
|
|
|
2016-02-21 06:53:20 +09:00
|
|
|
create_table "statuses", force: :cascade do |t|
|
2016-02-24 03:17:37 +09:00
|
|
|
t.string "uri"
|
2016-12-02 22:33:20 +09:00
|
|
|
t.integer "account_id", null: false
|
|
|
|
t.text "text", default: "", null: false
|
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.datetime "updated_at", null: false
|
2016-02-24 03:17:37 +09:00
|
|
|
t.integer "in_reply_to_id"
|
|
|
|
t.integer "reblog_of_id"
|
|
|
|
t.string "url"
|
2016-12-02 22:33:20 +09:00
|
|
|
t.boolean "sensitive", default: false
|
|
|
|
t.integer "visibility", default: 0, null: false
|
|
|
|
t.integer "in_reply_to_account_id"
|
2017-01-15 06:58:50 +09:00
|
|
|
t.integer "application_id"
|
2017-01-25 23:24:19 +09:00
|
|
|
t.text "spoiler_text", default: "", null: false
|
2017-02-10 04:25:39 +09:00
|
|
|
t.boolean "reply", default: false
|
2016-08-18 00:56:23 +09:00
|
|
|
t.index ["account_id"], name: "index_statuses_on_account_id", using: :btree
|
|
|
|
t.index ["in_reply_to_id"], name: "index_statuses_on_in_reply_to_id", using: :btree
|
|
|
|
t.index ["reblog_of_id"], name: "index_statuses_on_reblog_of_id", using: :btree
|
|
|
|
t.index ["uri"], name: "index_statuses_on_uri", unique: true, using: :btree
|
2016-11-05 23:20:05 +09:00
|
|
|
end
|
|
|
|
|
|
|
|
create_table "statuses_tags", id: false, force: :cascade do |t|
|
|
|
|
t.integer "status_id", null: false
|
|
|
|
t.integer "tag_id", null: false
|
|
|
|
t.index ["tag_id", "status_id"], name: "index_statuses_tags_on_tag_id_and_status_id", unique: true, using: :btree
|
2016-02-21 06:53:20 +09:00
|
|
|
end
|
|
|
|
|
2016-02-23 00:00:20 +09:00
|
|
|
create_table "stream_entries", force: :cascade do |t|
|
|
|
|
t.integer "account_id"
|
|
|
|
t.integer "activity_id"
|
|
|
|
t.string "activity_type"
|
2016-12-22 04:00:18 +09:00
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.datetime "updated_at", null: false
|
|
|
|
t.boolean "hidden", default: false, null: false
|
2016-08-18 00:56:23 +09:00
|
|
|
t.index ["account_id"], name: "index_stream_entries_on_account_id", using: :btree
|
|
|
|
t.index ["activity_id", "activity_type"], name: "index_stream_entries_on_activity_id_and_activity_type", using: :btree
|
2016-02-23 00:00:20 +09:00
|
|
|
end
|
|
|
|
|
2016-11-28 21:36:47 +09:00
|
|
|
create_table "subscriptions", force: :cascade do |t|
|
2016-11-30 23:24:57 +09:00
|
|
|
t.string "callback_url", default: "", null: false
|
2016-11-28 21:36:47 +09:00
|
|
|
t.string "secret"
|
|
|
|
t.datetime "expires_at"
|
2016-11-30 23:24:57 +09:00
|
|
|
t.boolean "confirmed", default: false, null: false
|
|
|
|
t.integer "account_id", null: false
|
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.datetime "updated_at", null: false
|
|
|
|
t.datetime "last_successful_delivery_at"
|
2016-11-28 21:36:47 +09:00
|
|
|
t.index ["callback_url", "account_id"], name: "index_subscriptions_on_callback_url_and_account_id", unique: true, using: :btree
|
|
|
|
end
|
|
|
|
|
2016-11-05 03:12:59 +09:00
|
|
|
create_table "tags", force: :cascade do |t|
|
|
|
|
t.string "name", default: "", null: false
|
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.datetime "updated_at", null: false
|
|
|
|
t.index ["name"], name: "index_tags_on_name", unique: true, using: :btree
|
|
|
|
end
|
|
|
|
|
2016-02-23 00:00:20 +09:00
|
|
|
create_table "users", force: :cascade do |t|
|
2017-01-28 04:28:46 +09:00
|
|
|
t.string "email", default: "", null: false
|
|
|
|
t.integer "account_id", null: false
|
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.datetime "updated_at", null: false
|
|
|
|
t.string "encrypted_password", default: "", null: false
|
2016-03-05 21:12:24 +09:00
|
|
|
t.string "reset_password_token"
|
|
|
|
t.datetime "reset_password_sent_at"
|
|
|
|
t.datetime "remember_created_at"
|
2017-01-28 04:28:46 +09:00
|
|
|
t.integer "sign_in_count", default: 0, null: false
|
2016-03-05 21:12:24 +09:00
|
|
|
t.datetime "current_sign_in_at"
|
|
|
|
t.datetime "last_sign_in_at"
|
|
|
|
t.inet "current_sign_in_ip"
|
|
|
|
t.inet "last_sign_in_ip"
|
2017-01-28 04:28:46 +09:00
|
|
|
t.boolean "admin", default: false
|
2016-10-03 23:38:22 +09:00
|
|
|
t.string "confirmation_token"
|
|
|
|
t.datetime "confirmed_at"
|
|
|
|
t.datetime "confirmation_sent_at"
|
|
|
|
t.string "unconfirmed_email"
|
2016-11-17 01:51:02 +09:00
|
|
|
t.string "locale"
|
2017-01-28 04:28:46 +09:00
|
|
|
t.string "encrypted_otp_secret"
|
|
|
|
t.string "encrypted_otp_secret_iv"
|
|
|
|
t.string "encrypted_otp_secret_salt"
|
|
|
|
t.integer "consumed_timestep"
|
|
|
|
t.boolean "otp_required_for_login"
|
2016-08-18 00:56:23 +09:00
|
|
|
t.index ["account_id"], name: "index_users_on_account_id", using: :btree
|
2016-10-03 23:38:22 +09:00
|
|
|
t.index ["confirmation_token"], name: "index_users_on_confirmation_token", unique: true, using: :btree
|
2016-08-18 00:56:23 +09:00
|
|
|
t.index ["email"], name: "index_users_on_email", unique: true, using: :btree
|
|
|
|
t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true, using: :btree
|
2016-02-23 00:00:20 +09:00
|
|
|
end
|
|
|
|
|
2017-01-09 22:00:55 +09:00
|
|
|
create_table "web_settings", force: :cascade do |t|
|
|
|
|
t.integer "user_id"
|
|
|
|
t.json "data"
|
|
|
|
t.datetime "created_at", null: false
|
|
|
|
t.datetime "updated_at", null: false
|
|
|
|
t.index ["user_id"], name: "index_web_settings_on_user_id", unique: true, using: :btree
|
|
|
|
end
|
|
|
|
|
2016-02-21 06:53:20 +09:00
|
|
|
end
|