208 lines
7.4 KiB
Ruby
208 lines
7.4 KiB
Ruby
# 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.
|
|
#
|
|
# This file is the source Rails uses to define your schema when running `bin/rails
|
|
# db:schema:load`. When creating a new database, `bin/rails db:schema:load` tends to
|
|
# be faster and is potentially less error prone than running all of your
|
|
# migrations from scratch. Old migrations may fail to apply correctly if those
|
|
# migrations use external dependencies or application code.
|
|
#
|
|
# It's strongly recommended that you check this file into your version control system.
|
|
|
|
ActiveRecord::Schema[8.0].define(version: 2025_11_02_124707) do
|
|
create_table "action_text_rich_texts", force: :cascade do |t|
|
|
t.string "name", null: false
|
|
t.text "body"
|
|
t.string "record_type", null: false
|
|
t.bigint "record_id", null: false
|
|
t.datetime "created_at", null: false
|
|
t.datetime "updated_at", null: false
|
|
t.index ["record_type", "record_id", "name"], name: "index_action_text_rich_texts_uniqueness", unique: true
|
|
end
|
|
|
|
create_table "active_admin_comments", force: :cascade do |t|
|
|
t.string "namespace"
|
|
t.text "body"
|
|
t.string "resource_type"
|
|
t.integer "resource_id"
|
|
t.string "author_type"
|
|
t.integer "author_id"
|
|
t.datetime "created_at", null: false
|
|
t.datetime "updated_at", null: false
|
|
t.index ["author_type", "author_id"], name: "index_active_admin_comments_on_author"
|
|
t.index ["namespace"], name: "index_active_admin_comments_on_namespace"
|
|
t.index ["resource_type", "resource_id"], name: "index_active_admin_comments_on_resource"
|
|
end
|
|
|
|
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.string "service_name", null: false
|
|
t.bigint "byte_size", null: false
|
|
t.string "checksum"
|
|
t.datetime "created_at", null: false
|
|
t.index ["key"], name: "index_active_storage_blobs_on_key", unique: true
|
|
end
|
|
|
|
create_table "active_storage_variant_records", force: :cascade do |t|
|
|
t.bigint "blob_id", null: false
|
|
t.string "variation_digest", null: false
|
|
t.index ["blob_id", "variation_digest"], name: "index_active_storage_variant_records_uniqueness", unique: true
|
|
end
|
|
|
|
create_table "admin_users", force: :cascade 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.datetime "created_at", null: false
|
|
t.datetime "updated_at", null: false
|
|
t.index ["email"], name: "index_admin_users_on_email", unique: true
|
|
t.index ["reset_password_token"], name: "index_admin_users_on_reset_password_token", unique: true
|
|
end
|
|
|
|
create_table "admins", force: :cascade 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.datetime "created_at", null: false
|
|
t.datetime "updated_at", null: false
|
|
t.index ["email"], name: "index_admins_on_email", unique: true
|
|
t.index ["reset_password_token"], name: "index_admins_on_reset_password_token", unique: true
|
|
end
|
|
|
|
create_table "cart_items", force: :cascade do |t|
|
|
t.integer "cart_id", null: false
|
|
t.integer "product_id", null: false
|
|
t.integer "quantity"
|
|
t.datetime "created_at", null: false
|
|
t.datetime "updated_at", null: false
|
|
t.index ["cart_id"], name: "index_cart_items_on_cart_id"
|
|
t.index ["product_id"], name: "index_cart_items_on_product_id"
|
|
end
|
|
|
|
create_table "carts", force: :cascade do |t|
|
|
t.datetime "created_at", null: false
|
|
t.datetime "updated_at", null: false
|
|
end
|
|
|
|
create_table "exclusive_traditional_records", force: :cascade do |t|
|
|
t.string "name"
|
|
t.string "author"
|
|
t.text "description"
|
|
t.datetime "created_at", null: false
|
|
t.datetime "updated_at", null: false
|
|
end
|
|
|
|
create_table "expenses", force: :cascade do |t|
|
|
t.decimal "amount"
|
|
t.date "date"
|
|
t.datetime "created_at", null: false
|
|
t.datetime "updated_at", null: false
|
|
end
|
|
|
|
create_table "incomes", force: :cascade do |t|
|
|
t.string "title"
|
|
t.decimal "amount"
|
|
t.date "date"
|
|
t.string "category"
|
|
t.text "description"
|
|
t.datetime "created_at", null: false
|
|
t.datetime "updated_at", null: false
|
|
end
|
|
|
|
create_table "institutions", force: :cascade do |t|
|
|
t.string "name"
|
|
t.string "institution_type"
|
|
t.datetime "created_at", null: false
|
|
t.datetime "updated_at", null: false
|
|
end
|
|
|
|
create_table "models", force: :cascade do |t|
|
|
t.string "Income"
|
|
t.string "title"
|
|
t.decimal "amount"
|
|
t.date "date"
|
|
t.string "category"
|
|
t.text "description"
|
|
t.datetime "created_at", null: false
|
|
t.datetime "updated_at", null: false
|
|
end
|
|
|
|
create_table "products", force: :cascade do |t|
|
|
t.string "name"
|
|
t.decimal "price"
|
|
t.datetime "created_at", null: false
|
|
t.datetime "updated_at", null: false
|
|
end
|
|
|
|
create_table "programs", force: :cascade do |t|
|
|
t.string "name"
|
|
t.date "date"
|
|
t.string "leadingPerson"
|
|
t.datetime "created_at", null: false
|
|
t.datetime "updated_at", null: false
|
|
end
|
|
|
|
create_table "shop_now_products", force: :cascade do |t|
|
|
t.string "name"
|
|
t.decimal "price"
|
|
t.text "description"
|
|
t.datetime "created_at", null: false
|
|
t.datetime "updated_at", null: false
|
|
end
|
|
|
|
create_table "students", force: :cascade do |t|
|
|
t.string "first_name"
|
|
t.string "last_name"
|
|
t.string "email"
|
|
t.integer "institution_id", null: false
|
|
t.datetime "created_at", null: false
|
|
t.datetime "updated_at", null: false
|
|
t.string "phone_number"
|
|
t.string "place"
|
|
t.integer "age"
|
|
t.index ["institution_id"], name: "index_students_on_institution_id"
|
|
end
|
|
|
|
create_table "users", force: :cascade 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.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
|
|
end
|
|
|
|
create_table "ziyaras", force: :cascade do |t|
|
|
t.string "name"
|
|
t.datetime "created_at", null: false
|
|
t.datetime "updated_at", null: false
|
|
end
|
|
|
|
add_foreign_key "active_storage_attachments", "active_storage_blobs", column: "blob_id"
|
|
add_foreign_key "active_storage_variant_records", "active_storage_blobs", column: "blob_id"
|
|
add_foreign_key "cart_items", "carts"
|
|
add_foreign_key "cart_items", "products"
|
|
add_foreign_key "students", "institutions"
|
|
end
|