From 77f9aa6002a9bb17566f1bc5df4c74a95309fb17 Mon Sep 17 00:00:00 2001 From: Nombre Usuario Date: Mon, 28 Aug 2023 09:23:04 -0500 Subject: [PATCH] Amplia tabla personas para importar aportantes. Closes #222 --- db/migrate/20230827222532_completa_cargos.rb | 21 ++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 db/migrate/20230827222532_completa_cargos.rb diff --git a/db/migrate/20230827222532_completa_cargos.rb b/db/migrate/20230827222532_completa_cargos.rb new file mode 100644 index 0000000..e6ecff9 --- /dev/null +++ b/db/migrate/20230827222532_completa_cargos.rb @@ -0,0 +1,21 @@ +class CompletaCargos < ActiveRecord::Migration[7.0] + def up + execute <<-SQL + INSERT INTO cargoestado (id, nombre, fechacreacion, created_at, + updated_at) VALUES + (42, 'Agente de Producción', '2023-08-27', '2023-08-27', '2023-08-27'); + INSERT INTO cargoestado (id, nombre, fechacreacion, created_at, + updated_at) VALUES + (43, 'Coordinador(a) de Bienestar', '2023-08-27', '2023-08-27', '2023-08-27'); + INSERT INTO cargoestado (id, nombre, fechacreacion, created_at, + updated_at) VALUES + (44, 'Profesional', '2023-08-27', '2023-08-27', '2023-08-27'); + SQL + end + + def down + execute <<-SQL + DELETE FROM cargoestado WHERE id>=42 AND id<=44; + SQL + end +end