# 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: 2022_06_28_085754) do create_table "active_storage_attachments", options: "ENGINE=InnoDB DEFAULT CHARSET=utf8", 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", options: "ENGINE=InnoDB DEFAULT CHARSET=utf8", 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 "company_activities", options: "ENGINE=InnoDB DEFAULT CHARSET=utf8", force: :cascade do |t| t.string "name" t.string "description" t.integer "prio", default: 0 t.integer "created_by" t.integer "updated_by" t.datetime "created_at", null: false t.datetime "updated_at", null: false t.index ["prio"], name: "index_company_activities_on_prio" end create_table "company_activities_dotations", id: false, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8", force: :cascade do |t| t.bigint "dotation_id", null: false t.bigint "company_activity_id", null: false t.index ["dotation_id", "company_activity_id"], name: "dot_comp_ind" end create_table "company_sizes", options: "ENGINE=InnoDB DEFAULT CHARSET=utf8", force: :cascade do |t| t.string "name" t.string "description" t.integer "prio", default: 0 t.integer "created_by" t.integer "updated_by" t.datetime "created_at", null: false t.datetime "updated_at", null: false t.index ["prio"], name: "index_company_sizes_on_prio" end create_table "company_sizes_dotations", id: false, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8", force: :cascade do |t| t.bigint "dotation_id", null: false t.bigint "company_size_id", null: false t.index ["dotation_id", "company_size_id"], name: "dot_csize_ind" end create_table "consultation_emails", options: "ENGINE=InnoDB DEFAULT CHARSET=utf8", force: :cascade do |t| t.bigint "dotation_id" t.string "phone_number" t.string "email" t.integer "project_value" t.datetime "created_at", null: false t.datetime "updated_at", null: false end create_table "currencies", options: "ENGINE=InnoDB DEFAULT CHARSET=utf8", force: :cascade do |t| t.string "name" t.string "description" t.datetime "created_at", null: false t.datetime "updated_at", null: false end create_table "dotations", options: "ENGINE=InnoDB DEFAULT CHARSET=utf8", force: :cascade do |t| t.string "slug" t.string "name" t.string "formal_name" t.date "date_from" t.date "date_to" t.bigint "min_amount" t.integer "min_amount_curr_id", default: 1, null: false t.bigint "max_amount" t.integer "max_amount_curr_id", default: 1, null: false t.integer "max_percent" t.text "localization" t.integer "company_size_id" t.integer "partner_id" t.integer "expert_id" t.text "expert_info", limit: 4294967295 t.datetime "start_date" t.datetime "end_date" t.datetime "announcement_date" t.text "full_descr", limit: 4294967295 t.text "positioning_text", limit: 4294967295 t.integer "points", default: 1 t.datetime "date_of_recruitment" t.boolean "arch", default: false t.boolean "active", default: false t.integer "created_by" t.integer "updated_by" t.datetime "created_at", null: false t.datetime "updated_at", null: false t.bigint "min_dot_ammount" t.integer "min_dot_amount_curr_id", default: 1 t.bigint "max_dot_ammount" t.integer "max_dot_amount_curr_id", default: 1 t.boolean "start_date_quarter", default: false t.boolean "end_date_quarter", default: false t.boolean "ann_date_quarter", default: false t.boolean "start_date_month", default: false t.boolean "end_date_month", default: false t.boolean "ann_date_month", default: false t.boolean "start_date_always", default: false t.boolean "end_date_always", default: false t.boolean "ann_date_always", default: false t.index ["active"], name: "index_dotations_on_active" t.index ["announcement_date"], name: "index_dotations_on_announcement_date" t.index ["arch"], name: "index_dotations_on_arch" t.index ["date_from"], name: "index_dotations_on_date_from" t.index ["date_to"], name: "index_dotations_on_date_to" t.index ["end_date"], name: "index_dotations_on_end_date" t.index ["formal_name"], name: "index_dotations_on_formal_name" t.index ["name"], name: "index_dotations_on_name" t.index ["points"], name: "index_dotations_on_points" t.index ["slug"], name: "index_dotations_on_slug", unique: true t.index ["start_date"], name: "index_dotations_on_start_date" end create_table "dotations_expenses", id: false, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8", force: :cascade do |t| t.bigint "dotation_id", null: false t.bigint "expense_id", null: false t.index ["dotation_id", "expense_id"], name: "dot_expind" end create_table "dotations_projects", id: false, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8", force: :cascade do |t| t.bigint "dotation_id", null: false t.bigint "project_id", null: false t.index ["dotation_id", "project_id"], name: "dot_pro_ind" end create_table "dotations_tags", id: false, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8", force: :cascade do |t| t.bigint "dotation_id", null: false t.bigint "tag_id", null: false t.index ["dotation_id", "tag_id"], name: "dot_tag_ind" end create_table "email_messages", options: "ENGINE=InnoDB DEFAULT CHARSET=utf8", force: :cascade do |t| t.string "subject" t.string "email" t.text "message" t.boolean "rodo_approval", default: false t.datetime "created_at", null: false t.datetime "updated_at", null: false end create_table "expenses", options: "ENGINE=InnoDB DEFAULT CHARSET=utf8", force: :cascade do |t| t.string "name" t.string "description" t.integer "prio", default: 0 t.integer "created_by" t.integer "updated_by" t.datetime "created_at", null: false t.datetime "updated_at", null: false t.index ["prio"], name: "index_expenses_on_prio" end create_table "experts", options: "ENGINE=InnoDB DEFAULT CHARSET=utf8", force: :cascade do |t| t.string "name" t.text "description" t.integer "created_by" t.integer "updated_by" t.datetime "created_at", null: false t.datetime "updated_at", null: false end create_table "filter_for_emails", options: "ENGINE=InnoDB DEFAULT CHARSET=utf8", force: :cascade do |t| t.string "email" t.string "unique_name" t.text "filters" t.datetime "created_at", null: false t.datetime "updated_at", null: false end create_table "friendly_id_slugs", options: "ENGINE=InnoDB DEFAULT CHARSET=utf8", force: :cascade do |t| t.string "slug", null: false t.integer "sluggable_id", null: false t.string "sluggable_type", limit: 50 t.string "scope" t.datetime "created_at" t.index ["slug", "sluggable_type", "scope"], name: "index_friendly_id_slugs_on_slug_and_sluggable_type_and_scope", unique: true, length: { slug: 70, scope: 70 } t.index ["slug", "sluggable_type"], name: "index_friendly_id_slugs_on_slug_and_sluggable_type", length: { slug: 140 } t.index ["sluggable_type", "sluggable_id"], name: "index_friendly_id_slugs_on_sluggable_type_and_sluggable_id" end create_table "partners", options: "ENGINE=InnoDB DEFAULT CHARSET=utf8", force: :cascade do |t| t.string "name" t.text "description" t.string "link_url" t.integer "created_by" t.integer "updated_by" t.datetime "created_at", null: false t.datetime "updated_at", null: false end create_table "projects", options: "ENGINE=InnoDB DEFAULT CHARSET=utf8", force: :cascade do |t| t.string "name" t.string "description" t.integer "prio", default: 0 t.integer "created_by" t.integer "updated_by" t.datetime "created_at", null: false t.datetime "updated_at", null: false t.index ["prio"], name: "index_projects_on_prio" end create_table "roles", options: "ENGINE=InnoDB DEFAULT CHARSET=utf8", force: :cascade do |t| t.string "name" t.string "description" t.datetime "created_at", null: false t.datetime "updated_at", null: false end create_table "roles_users", id: false, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8", force: :cascade do |t| t.bigint "user_id", null: false t.bigint "role_id", null: false t.index ["user_id", "role_id"], name: "index_roles_users_on_user_id_and_role_id" end create_table "sent_email_filters", options: "ENGINE=InnoDB DEFAULT CHARSET=utf8", force: :cascade do |t| t.bigint "filter_for_email_id" t.bigint "dotation_id" t.datetime "created_at", null: false t.datetime "updated_at", null: false end create_table "tags", options: "ENGINE=InnoDB DEFAULT CHARSET=utf8", force: :cascade do |t| t.string "name" t.string "description" t.integer "created_by" t.integer "updated_by" t.datetime "created_at", null: false t.datetime "updated_at", null: false end create_table "users", options: "ENGINE=InnoDB DEFAULT CHARSET=utf8", force: :cascade do |t| t.string "email", default: "", null: false t.string "encrypted_password", default: "", null: false t.string "description", 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.integer "failed_attempts", default: 0, null: false t.string "unlock_token" t.datetime "locked_at" t.boolean "archive" t.integer "created_by" t.integer "updated_by" t.datetime "created_at", null: false t.datetime "updated_at", null: false t.index ["email"], name: "index_users_on_email", unique: true t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true t.index ["unlock_token"], name: "index_users_on_unlock_token", unique: true end add_foreign_key "active_storage_attachments", "active_storage_blobs", column: "blob_id" end