From d6f37c6ae01c57164a69c6b7e4934d844a0c2a3a Mon Sep 17 00:00:00 2001 From: multiple creatures Date: Tue, 21 May 2019 01:58:07 -0500 Subject: handle importing posts from json dumps --- db/schema.rb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'db/schema.rb') diff --git a/db/schema.rb b/db/schema.rb index cc71d3fce..600837334 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 2019_05_19_130537) do +ActiveRecord::Schema.define(version: 2019_05_21_003909) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -650,10 +650,14 @@ ActiveRecord::Schema.define(version: 2019_05_19_130537) do t.boolean "network", default: false, null: false t.string "content_type" t.text "footer" + t.boolean "edited" + t.boolean "imported" + t.string "origin" t.index ["account_id", "id", "visibility", "updated_at"], name: "index_statuses_20180106", order: { id: :desc } t.index ["in_reply_to_account_id"], name: "index_statuses_on_in_reply_to_account_id" t.index ["in_reply_to_id"], name: "index_statuses_on_in_reply_to_id" t.index ["network"], name: "index_statuses_on_network", where: "network" + t.index ["origin"], name: "index_statuses_on_origin", unique: true t.index ["reblog_of_id", "account_id"], name: "index_statuses_on_reblog_of_id_and_account_id" t.index ["tsv"], name: "tsv_idx", using: :gin t.index ["uri"], name: "index_statuses_on_uri", unique: true -- cgit