Remove non-existent table from schema

This commit is contained in:
Andreas Nedbal 2022-11-06 15:21:19 +01:00
parent fdf42d4169
commit 3f6e61e39b
1 changed files with 0 additions and 10 deletions

View File

@ -194,16 +194,6 @@ ActiveRecord::Schema.define(version: 2022_11_06_130744) do
t.index ["user_id"], name: "index_services_on_user_id"
end
create_table "settings", id: :serial, force: :cascade do |t|
t.string "var", null: false
t.text "value"
t.integer "thing_id"
t.string "thing_type", limit: 30
t.datetime "created_at"
t.datetime "updated_at"
t.index ["thing_type", "thing_id", "var"], name: "index_settings_on_thing_type_and_thing_id_and_var", unique: true
end
create_table "subscriptions", id: :serial, force: :cascade do |t|
t.bigint "user_id", null: false
t.bigint "answer_id", null: false