Upgrade from Rails 5.0 to 5.2

This commit is contained in:
Christoph Haas 2020-04-13 20:15:18 +02:00
parent 820ff2a30b
commit d130f68172
29 changed files with 504 additions and 301 deletions

View file

@ -10,78 +10,100 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20170422183028) do
ActiveRecord::Schema.define(version: 2020_04_13_210200) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
create_table "logs", force: :cascade do |t|
t.string "message"
t.string "level"
t.string "section"
t.string "token"
t.inet "ip_address"
create_table "active_storage_attachments", force: :cascade do |t|
t.string "name", null: false
t.string "record_type", null: false
t.bigint "record_id", null: false
t.bigint "blob_id", null: false
t.datetime "created_at", null: false
t.index ["blob_id"], name: "index_active_storage_attachments_on_blob_id"
t.index ["record_type", "record_id", "name", "blob_id"], name: "index_active_storage_attachments_uniqueness", unique: true
end
create_table "active_storage_blobs", force: :cascade do |t|
t.string "key", null: false
t.string "filename", null: false
t.string "content_type"
t.text "metadata"
t.bigint "byte_size", null: false
t.string "checksum", null: false
t.datetime "created_at", null: false
t.index ["key"], name: "index_active_storage_blobs_on_key", unique: true
end
create_table "logs", id: :serial, force: :cascade do |t|
t.string "message"
t.string "level"
t.string "section"
t.string "token"
t.inet "ip_address"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end
create_table "packages", force: :cascade do |t|
t.string "name", null: false
t.string "description", limit: 80
t.string "section", limit: 50
t.string "maintainer", limit: 100
t.string "maintainer_email", limit: 100
t.string "homepage", limit: 400
t.string "version", limit: 200
t.text "long_description"
t.string "origin", limit: 80
create_table "packages", id: :serial, force: :cascade do |t|
t.string "name", null: false
t.string "description", limit: 80
t.string "section", limit: 50
t.string "maintainer", limit: 100
t.string "maintainer_email", limit: 100
t.string "homepage", limit: 400
t.string "version", limit: 200
t.text "long_description"
t.string "origin", limit: 80
t.datetime "created_at"
t.datetime "updated_at"
t.integer "visits", default: 0
t.integer "visits", default: 0
t.index "(((setweight(to_tsvector('english'::regconfig, COALESCE((name)::text, ''::text)), 'A'::\"char\") || setweight(to_tsvector('english'::regconfig, COALESCE((description)::text, ''::text)), 'B'::\"char\")) || setweight(to_tsvector('english'::regconfig, COALESCE(long_description, ''::text)), 'C'::\"char\")))", name: "packages_fts", using: :gin
t.index ["name"], name: "packages_name_key", unique: true, using: :btree
t.index ["name"], name: "packages_name_key", unique: true
end
create_table "screenshots", force: :cascade do |t|
t.integer "package_id"
t.string "version", limit: 50
create_table "screenshots", id: :serial, force: :cascade do |t|
t.integer "package_id"
t.string "version", limit: 50
t.datetime "created_at"
t.string "uploaderhash", limit: 72
t.string "uploaderip", limit: 15
t.boolean "approved", default: false, null: false
t.boolean "markedfordelete"
t.string "delete_reason", limit: 100
t.text "description"
t.string "uploaderhash", limit: 72
t.string "uploaderip", limit: 15
t.boolean "approved", default: false, null: false
t.boolean "markedfordelete"
t.string "delete_reason", limit: 100
t.text "description"
t.datetime "updated_at"
t.string "image_file_name"
t.string "image_content_type"
t.integer "image_file_size"
t.string "image_file_name"
t.string "image_content_type"
t.integer "image_file_size"
t.datetime "image_updated_at"
t.string "image_fingerprint"
t.integer "user_id", default: 0
t.index ["id", "approved"], name: "id_approved", using: :btree
t.index ["id", "uploaderhash"], name: "id_uploaderhash", using: :btree
t.string "image_fingerprint"
t.integer "user_id", default: 0
t.index ["id", "approved"], name: "id_approved"
t.index ["id", "uploaderhash"], name: "id_uploaderhash"
end
create_table "users", force: :cascade do |t|
t.text "name"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.string "email", default: "", null: false
t.string "encrypted_password", default: "", null: false
t.integer "sign_in_count", default: 0, null: false
create_table "users", id: :serial, force: :cascade do |t|
t.text "name"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.string "email", default: "", null: false
t.string "encrypted_password", default: "", null: false
t.integer "sign_in_count", default: 0, null: false
t.datetime "current_sign_in_at"
t.datetime "last_sign_in_at"
t.inet "current_sign_in_ip"
t.inet "last_sign_in_ip"
t.integer "failed_attempts", default: 0, null: false
t.string "unlock_token"
t.inet "current_sign_in_ip"
t.inet "last_sign_in_ip"
t.integer "failed_attempts", default: 0, null: false
t.string "unlock_token"
t.datetime "locked_at"
t.string "provider"
t.string "uid"
t.integer "admin", default: 0
t.index ["email", "provider"], name: "index_users_on_email_and_provider", unique: true, using: :btree
t.string "provider"
t.string "uid"
t.integer "admin", default: 0
t.index ["email", "provider"], name: "index_users_on_email_and_provider", unique: true
end
add_foreign_key "active_storage_attachments", "active_storage_blobs", column: "blob_id"
add_foreign_key "screenshots", "packages", name: "screenshots_package_id_fkey"
end