chore: reorganize para current/, rails 8.1, testes e readme
- move app para current/ (estrutura capistrano) - rails 7.2 → 8.1, ruby 3.2, sqlite3 2.x - adiciona primary_key Idinformativo no model - schema.rb completo com todas as tabelas - testes minitest: models (Tag, Informativo, Tema) e controllers - readme atualizado em pt-br com stack e instruções de desenvolvimento - gitignore exclui dump.sql, *.duckdb e sqlite3
This commit is contained in:
73
current/db/schema.rb
Normal file
73
current/db/schema.rb
Normal file
@@ -0,0 +1,73 @@
|
||||
# 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: 2019_12_18_191626) do
|
||||
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", precision: nil
|
||||
t.datetime "remember_created_at", precision: nil
|
||||
t.datetime "created_at", precision: nil, null: false
|
||||
t.datetime "updated_at", precision: nil, 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 "informativo", primary_key: "Idinformativo", force: :cascade do |t|
|
||||
t.string "titulo"
|
||||
t.text "Descricao"
|
||||
t.integer "Idtipo"
|
||||
t.string "Abrangencia"
|
||||
t.date "Datainc"
|
||||
t.integer "tema1", default: 0
|
||||
t.integer "subtema1", default: 0
|
||||
t.integer "tema2", default: 0
|
||||
t.integer "subtema2", default: 0
|
||||
t.integer "tema3", default: 0
|
||||
t.integer "subtema3", default: 0
|
||||
t.integer "tema4", default: 0
|
||||
t.integer "subtema4", default: 0
|
||||
t.string "operador_inc"
|
||||
t.string "operador_alt"
|
||||
t.text "markdown"
|
||||
t.index ["Datainc"], name: "idx_info_datainc"
|
||||
t.index ["Idtipo"], name: "idx_info_idtipo"
|
||||
t.index ["tema1"], name: "idx_info_tema1"
|
||||
end
|
||||
|
||||
create_table "informativo_tags", id: false, force: :cascade do |t|
|
||||
t.integer "informativo_id", null: false
|
||||
t.integer "tag_id", null: false
|
||||
t.index ["informativo_id"], name: "index_informativo_tags_on_informativo_id"
|
||||
t.index ["tag_id"], name: "index_informativo_tags_on_tag_id"
|
||||
end
|
||||
|
||||
create_table "tags", force: :cascade do |t|
|
||||
t.string "nome"
|
||||
t.string "param"
|
||||
t.integer "count"
|
||||
t.index ["param"], name: "index_tags_on_param"
|
||||
end
|
||||
|
||||
create_table "temas", force: :cascade do |t|
|
||||
t.integer "cod_tema", default: 0
|
||||
t.integer "cod_tema_sub", default: 0
|
||||
t.string "tema", limit: 50
|
||||
t.integer "ativo", default: 0
|
||||
t.string "padrao", limit: 50
|
||||
t.integer "count"
|
||||
t.string "param", limit: 100
|
||||
t.index ["cod_tema", "cod_tema_sub"], name: "index_temas_cod"
|
||||
t.index ["param"], name: "index_temas_param"
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user