85 lines
3.4 KiB
Ruby
85 lines
3.4 KiB
Ruby
# encoding: UTF-8
|
|
# This file is auto-generated from the current state of the database. Instead
|
|
# of editing this file, please use the migrations feature of Active Record to
|
|
# incrementally modify your database, and then regenerate this schema definition.
|
|
#
|
|
# Note that this schema.rb definition is the authoritative source for your
|
|
# database schema. If you need to create the application database on another
|
|
# system, you should be using db:schema:load, not running all the migrations
|
|
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
|
|
# you'll amass, the slower it'll run and the greater likelihood for issues).
|
|
#
|
|
# It's strongly recommended that you check this file into your version control system.
|
|
|
|
ActiveRecord::Schema.define(version: 20160408143714) 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"
|
|
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
|
|
t.datetime "created_at"
|
|
t.datetime "updated_at"
|
|
end
|
|
|
|
add_index "packages", ["name"], name: "packages_name_key", unique: true, using: :btree
|
|
|
|
create_table "screenshots", 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.string "description", limit: 40
|
|
t.datetime "updated_at"
|
|
t.string "image_file_name"
|
|
t.string "image_content_type"
|
|
t.integer "image_file_size"
|
|
t.datetime "image_updated_at"
|
|
t.string "image_fingerprint"
|
|
end
|
|
|
|
add_index "screenshots", ["id", "approved"], name: "id_approved", using: :btree
|
|
add_index "screenshots", ["id", "uploaderhash"], name: "id_uploaderhash", using: :btree
|
|
|
|
create_table "users", force: :cascade do |t|
|
|
t.text "realname"
|
|
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.datetime "locked_at"
|
|
end
|
|
|
|
add_index "users", ["email"], name: "index_users_on_email", unique: true, using: :btree
|
|
|
|
add_foreign_key "screenshots", "packages", name: "screenshots_package_id_fkey"
|
|
end
|