# 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: 20250411171138) do create_table "client_files", force: :cascade, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_polish_ci" do |t| t.string "name" t.text "description", limit: 65535 t.integer "client_id" t.datetime "created_at", null: false t.datetime "updated_at", null: false t.index ["client_id"], name: "index_client_files_on_client_id", using: :btree end create_table "clients", force: :cascade, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_polish_ci" do |t| t.string "name" t.text "description", limit: 65535 t.datetime "created_at", null: false t.datetime "updated_at", null: false end create_table "customers", force: :cascade, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_polish_ci" do |t| t.string "name" t.string "street" t.string "postcode" t.string "city" t.string "nip" t.string "regon" t.datetime "created_at", null: false t.datetime "updated_at", null: false t.integer "user_id" t.index ["user_id"], name: "index_customers_on_user_id", using: :btree end create_table "invoice_products", force: :cascade, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_polish_ci" do |t| t.integer "invoice_id" t.integer "product_id", null: false t.decimal "netto_price", precision: 10, scale: 2, null: false t.decimal "qty", precision: 10, scale: 3, null: false t.datetime "created_at", null: false t.datetime "updated_at", null: false t.index ["invoice_id"], name: "index_invoice_products_on_invoice_id", using: :btree t.index ["product_id"], name: "index_invoice_products_on_product_id", using: :btree end create_table "invoices", force: :cascade, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_polish_ci" do |t| t.integer "user_id" t.integer "user_firm_id" t.integer "customer_id" t.string "number" t.date "date" t.date "date_of_payment" t.datetime "created_at", null: false t.datetime "updated_at", null: false t.index ["customer_id"], name: "index_invoices_on_customer_id", using: :btree t.index ["user_firm_id"], name: "index_invoices_on_user_firm_id", using: :btree t.index ["user_id"], name: "index_invoices_on_user_id", using: :btree end create_table "notes", force: :cascade, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_polish_ci" do |t| t.text "content", limit: 65535 t.integer "client_id" t.datetime "created_at", null: false t.datetime "updated_at", null: false t.index ["client_id"], name: "index_notes_on_client_id", using: :btree end create_table "platforms", force: :cascade, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_polish_ci" do |t| t.string "name" t.string "url" t.text "login_info", limit: 65535 t.integer "client_id" t.datetime "created_at", null: false t.datetime "updated_at", null: false t.index ["client_id"], name: "index_platforms_on_client_id", using: :btree end create_table "products", force: :cascade, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_polish_ci" do |t| t.string "name" t.integer "vat_id" t.decimal "netto_price", precision: 18, scale: 2 t.string "qnt_name" t.datetime "created_at", null: false t.datetime "updated_at", null: false t.integer "user_id" t.index ["user_id"], name: "index_products_on_user_id", using: :btree t.index ["vat_id"], name: "index_products_on_vat_id", using: :btree end create_table "user_firms", force: :cascade, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_polish_ci" do |t| t.integer "user_id" t.string "name" t.string "street" t.string "postcode" t.string "city" t.string "nip" t.string "regon" t.string "bank_name" t.string "bank_account" t.boolean "main" t.boolean "active", default: true, null: false t.datetime "created_at", null: false t.datetime "updated_at", null: false t.index ["user_id"], name: "index_user_firms_on_user_id", using: :btree end create_table "users", force: :cascade, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_polish_ci" do |t| t.string "email", default: "", null: false t.string "encrypted_password", default: "", null: false t.string "reset_password_token" t.datetime "reset_password_sent_at" t.datetime "remember_created_at" t.integer "sign_in_count", default: 0, null: false t.datetime "current_sign_in_at" t.datetime "last_sign_in_at" t.string "current_sign_in_ip" t.string "last_sign_in_ip" t.datetime "created_at", null: false t.datetime "updated_at", null: false t.index ["email"], name: "index_users_on_email", unique: true, using: :btree t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true, using: :btree end create_table "vats", force: :cascade, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_polish_ci" do |t| t.string "name" t.date "start_date" t.decimal "tax_rate", precision: 6, scale: 2 t.datetime "created_at", null: false t.datetime "updated_at", null: false end add_foreign_key "client_files", "clients" add_foreign_key "customers", "users" add_foreign_key "invoice_products", "invoices" add_foreign_key "invoice_products", "products" add_foreign_key "invoices", "customers" add_foreign_key "invoices", "user_firms" add_foreign_key "invoices", "users" add_foreign_key "notes", "clients" add_foreign_key "platforms", "clients" add_foreign_key "products", "users" add_foreign_key "products", "vats" add_foreign_key "user_firms", "users" end