Project initialize
This commit is contained in:
84
db/schema.rb
Normal file
84
db/schema.rb
Normal file
@@ -0,0 +1,84 @@
|
||||
# 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: 20260122043706) do
|
||||
|
||||
create_table "departments", force: :cascade do |t|
|
||||
t.string "name", null: false
|
||||
t.text "description"
|
||||
t.datetime "created_at", null: false
|
||||
t.datetime "updated_at", null: false
|
||||
t.index ["name"], name: "index_departments_on_name", unique: true
|
||||
end
|
||||
|
||||
create_table "task_activities", force: :cascade do |t|
|
||||
t.integer "task_id"
|
||||
t.integer "user_id"
|
||||
t.string "action"
|
||||
t.text "details"
|
||||
t.datetime "created_at", null: false
|
||||
t.datetime "updated_at", null: false
|
||||
t.index ["task_id"], name: "index_task_activities_on_task_id"
|
||||
t.index ["user_id"], name: "index_task_activities_on_user_id"
|
||||
end
|
||||
|
||||
create_table "tasks", force: :cascade do |t|
|
||||
t.string "title"
|
||||
t.boolean "completed"
|
||||
t.datetime "created_at", null: false
|
||||
t.datetime "updated_at", null: false
|
||||
t.text "description"
|
||||
t.string "priority", default: "planning", null: false
|
||||
t.string "status", default: "open", null: false
|
||||
t.integer "department_id"
|
||||
t.integer "assignee_id"
|
||||
t.integer "creator_id"
|
||||
t.index ["assignee_id"], name: "index_tasks_on_assignee_id"
|
||||
t.index ["creator_id"], name: "index_tasks_on_creator_id"
|
||||
t.index ["department_id", "status"], name: "index_tasks_on_department_id_and_status"
|
||||
t.index ["department_id"], name: "index_tasks_on_department_id"
|
||||
t.index ["priority"], name: "index_tasks_on_priority"
|
||||
t.index ["status"], name: "index_tasks_on_status"
|
||||
end
|
||||
|
||||
create_table "users", force: :cascade do |t|
|
||||
t.string "name", null: false
|
||||
t.string "email", null: false
|
||||
t.string "role", default: "employee", null: false
|
||||
t.integer "department_id"
|
||||
t.datetime "created_at", null: false
|
||||
t.datetime "updated_at", 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.string "confirmation_token"
|
||||
t.datetime "confirmed_at"
|
||||
t.datetime "confirmation_sent_at"
|
||||
t.string "unconfirmed_email"
|
||||
t.integer "failed_attempts", default: 0, null: false
|
||||
t.string "unlock_token"
|
||||
t.datetime "locked_at"
|
||||
t.index ["confirmation_token"], name: "index_users_on_confirmation_token", unique: true
|
||||
t.index ["department_id"], name: "index_users_on_department_id"
|
||||
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 ["role"], name: "index_users_on_role"
|
||||
t.index ["unlock_token"], name: "index_users_on_unlock_token", unique: true
|
||||
end
|
||||
|
||||
end
|
||||
Reference in New Issue
Block a user