Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
# 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: 2019_07_10_221713) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
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 "bookings", force: :cascade do |t|
t.integer "guest_id", null: false
t.integer "spot_id", null: false
t.date "check_in", null: false
t.date "check_out", null: false
t.integer "num_guest", null: false
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["guest_id"], name: "index_bookings_on_guest_id"
t.index ["spot_id"], name: "index_bookings_on_spot_id"
end
create_table "spots", force: :cascade do |t|
t.string "title", null: false
t.text "description", null: false
t.integer "num_guests"
t.integer "num_bedrooms"
t.integer "num_beds"
t.integer "num_baths"
t.string "listing_type"
t.float "price", null: false
t.string "location", null: false
t.string "loc_detail"
t.float "lat", null: false
t.float "lng", null: false
t.integer "host_id", null: false
t.boolean "wifi", default: true
t.boolean "washer", default: true
t.boolean "tv", default: true
t.boolean "elevator", default: true
t.boolean "parking", default: true
t.boolean "kitchen", default: true
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["host_id"], name: "index_spots_on_host_id"
end
create_table "users", force: :cascade do |t|
t.string "username", null: false
t.string "password_digest", null: false
t.string "session_token", null: false
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.string "fname"
t.text "bio"
t.index ["session_token"], name: "index_users_on_session_token", unique: true
t.index ["username"], name: "index_users_on_username", unique: true
end
add_foreign_key "active_storage_attachments", "active_storage_blobs", column: "blob_id"
end