Initial
This commit is contained in:
11
db/cable_schema.rb
Normal file
11
db/cable_schema.rb
Normal file
@@ -0,0 +1,11 @@
|
||||
ActiveRecord::Schema[7.1].define(version: 1) do
|
||||
create_table "solid_cable_messages", force: :cascade do |t|
|
||||
t.binary "channel", limit: 1024, null: false
|
||||
t.binary "payload", limit: 536870912, null: false
|
||||
t.datetime "created_at", null: false
|
||||
t.integer "channel_hash", limit: 8, null: false
|
||||
t.index ["channel"], name: "index_solid_cable_messages_on_channel"
|
||||
t.index ["channel_hash"], name: "index_solid_cable_messages_on_channel_hash"
|
||||
t.index ["created_at"], name: "index_solid_cable_messages_on_created_at"
|
||||
end
|
||||
end
|
||||
12
db/cache_schema.rb
Normal file
12
db/cache_schema.rb
Normal file
@@ -0,0 +1,12 @@
|
||||
ActiveRecord::Schema[7.2].define(version: 1) do
|
||||
create_table "solid_cache_entries", force: :cascade do |t|
|
||||
t.binary "key", limit: 1024, null: false
|
||||
t.binary "value", limit: 536870912, null: false
|
||||
t.datetime "created_at", null: false
|
||||
t.integer "key_hash", limit: 8, null: false
|
||||
t.integer "byte_size", limit: 4, null: false
|
||||
t.index ["byte_size"], name: "index_solid_cache_entries_on_byte_size"
|
||||
t.index ["key_hash", "byte_size"], name: "index_solid_cache_entries_on_key_hash_and_byte_size"
|
||||
t.index ["key_hash"], name: "index_solid_cache_entries_on_key_hash", unique: true
|
||||
end
|
||||
end
|
||||
BIN
db/development.sqlite3
Executable file
BIN
db/development.sqlite3
Executable file
Binary file not shown.
9
db/migrate/20180412213337_create_contacto_de_preferencia.rb
Executable file
9
db/migrate/20180412213337_create_contacto_de_preferencia.rb
Executable file
@@ -0,0 +1,9 @@
|
||||
class CreateContactoDePreferencia < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
create_table :contacto_de_preferencia do |t|
|
||||
t.string :nombre
|
||||
|
||||
t.timestamps
|
||||
end
|
||||
end
|
||||
end
|
||||
9
db/migrate/20180412213353_create_categoria.rb
Executable file
9
db/migrate/20180412213353_create_categoria.rb
Executable file
@@ -0,0 +1,9 @@
|
||||
class CreateCategoria < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
create_table :categoria do |t|
|
||||
t.string :nombre
|
||||
|
||||
t.timestamps
|
||||
end
|
||||
end
|
||||
end
|
||||
9
db/migrate/20180412213408_create_statuses.rb
Executable file
9
db/migrate/20180412213408_create_statuses.rb
Executable file
@@ -0,0 +1,9 @@
|
||||
class CreateStatuses < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
create_table :statuses do |t|
|
||||
t.string :nombre
|
||||
|
||||
t.timestamps
|
||||
end
|
||||
end
|
||||
end
|
||||
22
db/migrate/20180412214757_create_asociados.rb
Executable file
22
db/migrate/20180412214757_create_asociados.rb
Executable file
@@ -0,0 +1,22 @@
|
||||
class CreateAsociados < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
create_table :asociados do |t|
|
||||
t.string :nombre
|
||||
t.string :email
|
||||
t.string :ciudad
|
||||
t.string :estado
|
||||
t.string :direccion
|
||||
t.string :detalles
|
||||
t.string :ejemplo_de_precios
|
||||
t.string :tiempo_de_entregas
|
||||
t.string :telefono
|
||||
t.references :contacto_de_preferencia, foreign_key: true
|
||||
t.references :categoria, foreign_key: true
|
||||
t.references :status, foreign_key: true
|
||||
t.string :notas
|
||||
t.boolean :verificado
|
||||
|
||||
t.timestamps
|
||||
end
|
||||
end
|
||||
end
|
||||
22
db/migrate/20180412215449_create_solicituds.rb
Executable file
22
db/migrate/20180412215449_create_solicituds.rb
Executable file
@@ -0,0 +1,22 @@
|
||||
class CreateSolicituds < ActiveRecord::Migration[5.2]
|
||||
def change
|
||||
create_table :solicituds do |t|
|
||||
t.string :nombre
|
||||
t.string :email
|
||||
t.string :ciudad
|
||||
t.string :estado
|
||||
t.string :direccion
|
||||
t.string :detalles
|
||||
t.string :presupuesto
|
||||
t.string :tiempo_de_entrega
|
||||
t.string :telefono
|
||||
t.references :contacto_de_preferencia, foreign_key: true
|
||||
t.references :categoria, foreign_key: true
|
||||
t.references :status, foreign_key: true
|
||||
t.string :notas
|
||||
t.boolean :verificado
|
||||
|
||||
t.timestamps
|
||||
end
|
||||
end
|
||||
end
|
||||
129
db/queue_schema.rb
Normal file
129
db/queue_schema.rb
Normal file
@@ -0,0 +1,129 @@
|
||||
ActiveRecord::Schema[7.1].define(version: 1) do
|
||||
create_table "solid_queue_blocked_executions", force: :cascade do |t|
|
||||
t.bigint "job_id", null: false
|
||||
t.string "queue_name", null: false
|
||||
t.integer "priority", default: 0, null: false
|
||||
t.string "concurrency_key", null: false
|
||||
t.datetime "expires_at", null: false
|
||||
t.datetime "created_at", null: false
|
||||
t.index [ "concurrency_key", "priority", "job_id" ], name: "index_solid_queue_blocked_executions_for_release"
|
||||
t.index [ "expires_at", "concurrency_key" ], name: "index_solid_queue_blocked_executions_for_maintenance"
|
||||
t.index [ "job_id" ], name: "index_solid_queue_blocked_executions_on_job_id", unique: true
|
||||
end
|
||||
|
||||
create_table "solid_queue_claimed_executions", force: :cascade do |t|
|
||||
t.bigint "job_id", null: false
|
||||
t.bigint "process_id"
|
||||
t.datetime "created_at", null: false
|
||||
t.index [ "job_id" ], name: "index_solid_queue_claimed_executions_on_job_id", unique: true
|
||||
t.index [ "process_id", "job_id" ], name: "index_solid_queue_claimed_executions_on_process_id_and_job_id"
|
||||
end
|
||||
|
||||
create_table "solid_queue_failed_executions", force: :cascade do |t|
|
||||
t.bigint "job_id", null: false
|
||||
t.text "error"
|
||||
t.datetime "created_at", null: false
|
||||
t.index [ "job_id" ], name: "index_solid_queue_failed_executions_on_job_id", unique: true
|
||||
end
|
||||
|
||||
create_table "solid_queue_jobs", force: :cascade do |t|
|
||||
t.string "queue_name", null: false
|
||||
t.string "class_name", null: false
|
||||
t.text "arguments"
|
||||
t.integer "priority", default: 0, null: false
|
||||
t.string "active_job_id"
|
||||
t.datetime "scheduled_at"
|
||||
t.datetime "finished_at"
|
||||
t.string "concurrency_key"
|
||||
t.datetime "created_at", null: false
|
||||
t.datetime "updated_at", null: false
|
||||
t.index [ "active_job_id" ], name: "index_solid_queue_jobs_on_active_job_id"
|
||||
t.index [ "class_name" ], name: "index_solid_queue_jobs_on_class_name"
|
||||
t.index [ "finished_at" ], name: "index_solid_queue_jobs_on_finished_at"
|
||||
t.index [ "queue_name", "finished_at" ], name: "index_solid_queue_jobs_for_filtering"
|
||||
t.index [ "scheduled_at", "finished_at" ], name: "index_solid_queue_jobs_for_alerting"
|
||||
end
|
||||
|
||||
create_table "solid_queue_pauses", force: :cascade do |t|
|
||||
t.string "queue_name", null: false
|
||||
t.datetime "created_at", null: false
|
||||
t.index [ "queue_name" ], name: "index_solid_queue_pauses_on_queue_name", unique: true
|
||||
end
|
||||
|
||||
create_table "solid_queue_processes", force: :cascade do |t|
|
||||
t.string "kind", null: false
|
||||
t.datetime "last_heartbeat_at", null: false
|
||||
t.bigint "supervisor_id"
|
||||
t.integer "pid", null: false
|
||||
t.string "hostname"
|
||||
t.text "metadata"
|
||||
t.datetime "created_at", null: false
|
||||
t.string "name", null: false
|
||||
t.index [ "last_heartbeat_at" ], name: "index_solid_queue_processes_on_last_heartbeat_at"
|
||||
t.index [ "name", "supervisor_id" ], name: "index_solid_queue_processes_on_name_and_supervisor_id", unique: true
|
||||
t.index [ "supervisor_id" ], name: "index_solid_queue_processes_on_supervisor_id"
|
||||
end
|
||||
|
||||
create_table "solid_queue_ready_executions", force: :cascade do |t|
|
||||
t.bigint "job_id", null: false
|
||||
t.string "queue_name", null: false
|
||||
t.integer "priority", default: 0, null: false
|
||||
t.datetime "created_at", null: false
|
||||
t.index [ "job_id" ], name: "index_solid_queue_ready_executions_on_job_id", unique: true
|
||||
t.index [ "priority", "job_id" ], name: "index_solid_queue_poll_all"
|
||||
t.index [ "queue_name", "priority", "job_id" ], name: "index_solid_queue_poll_by_queue"
|
||||
end
|
||||
|
||||
create_table "solid_queue_recurring_executions", force: :cascade do |t|
|
||||
t.bigint "job_id", null: false
|
||||
t.string "task_key", null: false
|
||||
t.datetime "run_at", null: false
|
||||
t.datetime "created_at", null: false
|
||||
t.index [ "job_id" ], name: "index_solid_queue_recurring_executions_on_job_id", unique: true
|
||||
t.index [ "task_key", "run_at" ], name: "index_solid_queue_recurring_executions_on_task_key_and_run_at", unique: true
|
||||
end
|
||||
|
||||
create_table "solid_queue_recurring_tasks", force: :cascade do |t|
|
||||
t.string "key", null: false
|
||||
t.string "schedule", null: false
|
||||
t.string "command", limit: 2048
|
||||
t.string "class_name"
|
||||
t.text "arguments"
|
||||
t.string "queue_name"
|
||||
t.integer "priority", default: 0
|
||||
t.boolean "static", default: true, null: false
|
||||
t.text "description"
|
||||
t.datetime "created_at", null: false
|
||||
t.datetime "updated_at", null: false
|
||||
t.index [ "key" ], name: "index_solid_queue_recurring_tasks_on_key", unique: true
|
||||
t.index [ "static" ], name: "index_solid_queue_recurring_tasks_on_static"
|
||||
end
|
||||
|
||||
create_table "solid_queue_scheduled_executions", force: :cascade do |t|
|
||||
t.bigint "job_id", null: false
|
||||
t.string "queue_name", null: false
|
||||
t.integer "priority", default: 0, null: false
|
||||
t.datetime "scheduled_at", null: false
|
||||
t.datetime "created_at", null: false
|
||||
t.index [ "job_id" ], name: "index_solid_queue_scheduled_executions_on_job_id", unique: true
|
||||
t.index [ "scheduled_at", "priority", "job_id" ], name: "index_solid_queue_dispatch_all"
|
||||
end
|
||||
|
||||
create_table "solid_queue_semaphores", force: :cascade do |t|
|
||||
t.string "key", null: false
|
||||
t.integer "value", default: 1, null: false
|
||||
t.datetime "expires_at", null: false
|
||||
t.datetime "created_at", null: false
|
||||
t.datetime "updated_at", null: false
|
||||
t.index [ "expires_at" ], name: "index_solid_queue_semaphores_on_expires_at"
|
||||
t.index [ "key", "value" ], name: "index_solid_queue_semaphores_on_key_and_value"
|
||||
t.index [ "key" ], name: "index_solid_queue_semaphores_on_key", unique: true
|
||||
end
|
||||
|
||||
add_foreign_key "solid_queue_blocked_executions", "solid_queue_jobs", column: "job_id", on_delete: :cascade
|
||||
add_foreign_key "solid_queue_claimed_executions", "solid_queue_jobs", column: "job_id", on_delete: :cascade
|
||||
add_foreign_key "solid_queue_failed_executions", "solid_queue_jobs", column: "job_id", on_delete: :cascade
|
||||
add_foreign_key "solid_queue_ready_executions", "solid_queue_jobs", column: "job_id", on_delete: :cascade
|
||||
add_foreign_key "solid_queue_recurring_executions", "solid_queue_jobs", column: "job_id", on_delete: :cascade
|
||||
add_foreign_key "solid_queue_scheduled_executions", "solid_queue_jobs", column: "job_id", on_delete: :cascade
|
||||
end
|
||||
82
db/schema.rb
generated
Executable file
82
db/schema.rb
generated
Executable file
@@ -0,0 +1,82 @@
|
||||
# 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: 2018_04_12_215449) do
|
||||
create_table "asociados", force: :cascade do |t|
|
||||
t.string "nombre"
|
||||
t.string "email"
|
||||
t.string "ciudad"
|
||||
t.string "estado"
|
||||
t.string "direccion"
|
||||
t.string "detalles"
|
||||
t.string "ejemplo_de_precios"
|
||||
t.string "tiempo_de_entregas"
|
||||
t.string "telefono"
|
||||
t.integer "contacto_de_preferencia_id"
|
||||
t.integer "categoria_id"
|
||||
t.integer "status_id"
|
||||
t.string "notas"
|
||||
t.boolean "verificado"
|
||||
t.datetime "created_at", precision: nil, null: false
|
||||
t.datetime "updated_at", precision: nil, null: false
|
||||
t.index ["categoria_id"], name: "index_asociados_on_categoria_id"
|
||||
t.index ["contacto_de_preferencia_id"], name: "index_asociados_on_contacto_de_preferencia_id"
|
||||
t.index ["status_id"], name: "index_asociados_on_status_id"
|
||||
end
|
||||
|
||||
create_table "categoria", force: :cascade do |t|
|
||||
t.string "nombre"
|
||||
t.datetime "created_at", precision: nil, null: false
|
||||
t.datetime "updated_at", precision: nil, null: false
|
||||
end
|
||||
|
||||
create_table "contacto_de_preferencia", force: :cascade do |t|
|
||||
t.string "nombre"
|
||||
t.datetime "created_at", precision: nil, null: false
|
||||
t.datetime "updated_at", precision: nil, null: false
|
||||
end
|
||||
|
||||
create_table "solicituds", force: :cascade do |t|
|
||||
t.string "nombre"
|
||||
t.string "email"
|
||||
t.string "ciudad"
|
||||
t.string "estado"
|
||||
t.string "direccion"
|
||||
t.string "detalles"
|
||||
t.string "presupuesto"
|
||||
t.string "tiempo_de_entrega"
|
||||
t.string "telefono"
|
||||
t.integer "contacto_de_preferencia_id"
|
||||
t.integer "categoria_id"
|
||||
t.integer "status_id"
|
||||
t.string "notas"
|
||||
t.boolean "verificado"
|
||||
t.datetime "created_at", precision: nil, null: false
|
||||
t.datetime "updated_at", precision: nil, null: false
|
||||
t.index ["categoria_id"], name: "index_solicituds_on_categoria_id"
|
||||
t.index ["contacto_de_preferencia_id"], name: "index_solicituds_on_contacto_de_preferencia_id"
|
||||
t.index ["status_id"], name: "index_solicituds_on_status_id"
|
||||
end
|
||||
|
||||
create_table "statuses", force: :cascade do |t|
|
||||
t.string "nombre"
|
||||
t.datetime "created_at", precision: nil, null: false
|
||||
t.datetime "updated_at", precision: nil, null: false
|
||||
end
|
||||
|
||||
add_foreign_key "asociados", "categoria", column: "categoria_id"
|
||||
add_foreign_key "asociados", "contacto_de_preferencia", column: "contacto_de_preferencia_id"
|
||||
add_foreign_key "asociados", "statuses"
|
||||
add_foreign_key "solicituds", "categoria", column: "categoria_id"
|
||||
add_foreign_key "solicituds", "contacto_de_preferencia", column: "contacto_de_preferencia_id"
|
||||
add_foreign_key "solicituds", "statuses"
|
||||
end
|
||||
11
db/seeds.rb
Normal file
11
db/seeds.rb
Normal file
@@ -0,0 +1,11 @@
|
||||
# This file should contain all the record creation needed to seed the database with its default values.
|
||||
# The data can then be loaded with the rails db:seed command (or created alongside the database with db:setup).
|
||||
#
|
||||
# Examples:
|
||||
#
|
||||
# movies = Movie.create([{ name: 'Star Wars' }, { name: 'Lord of the Rings' }])
|
||||
# Character.create(name: 'Luke', movie: movies.first)
|
||||
|
||||
Status.create([{nombre: 'Recibido'}, {nombre: 'Aprobado'}])
|
||||
Categoria.create([{nombre: 'Categoria 1'}, {nombre: 'Categoria 2'}])
|
||||
ContactoDePreferencia.create([{nombre: 'Primario'}, {nombre: 'Secundario'}])
|
||||
Reference in New Issue
Block a user