diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-05-21 01:58:07 -0500 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-05-21 03:17:31 -0500 |
commit | d6f37c6ae01c57164a69c6b7e4934d844a0c2a3a (patch) | |
tree | d6fc393472fc7b3e056cb1a5a7c13c3bd1de77f6 /db | |
parent | cbdadfb5fa8088edb4b0ec879faf58b0d8272664 (diff) |
handle importing posts from json dumps
Diffstat (limited to 'db')
-rw-r--r-- | db/schema.rb | 6 |
1 files changed, 5 insertions, 1 deletions
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 |