diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-11-26 15:19:38 -0600 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-11-26 15:19:38 -0600 |
commit | f23b06a1821790b57f4538328408cbbf16f09b6d (patch) | |
tree | 9c7a0a08088dae4ddcffc867b0ae07a98f915019 /db | |
parent | 2163e3598ae6da02a6bce14889b93033cd271bad (diff) |
update rails & yarn deps
Diffstat (limited to 'db')
-rw-r--r-- | db/schema.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/db/schema.rb b/db/schema.rb index e2c8256b2..63897a0e7 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -208,6 +208,16 @@ ActiveRecord::Schema.define(version: 2019_11_18_102858) do t.index ["target_account_id"], name: "index_blocks_on_target_account_id" end + create_table "bookmarks", force: :cascade do |t| + t.bigint "account_id", null: false + t.bigint "status_id", null: false + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index ["account_id", "status_id"], name: "index_bookmarks_on_account_id_and_status_id", unique: true + t.index ["account_id"], name: "index_bookmarks_on_account_id" + t.index ["status_id"], name: "index_bookmarks_on_status_id" + end + create_table "conversation_mutes", force: :cascade do |t| t.bigint "conversation_id", null: false t.bigint "account_id", null: false |