Git Product home page Git Product logo

Comments (3)

hernan-alperin avatar hernan-alperin commented on August 10, 2024
  1. pg_dump -x -O -t public.fuente --section=pre-data toto5 -f app/developer_docs/fuente.up.sql
    vi app/developer_docs/fuente.up.sql y
    agregar 'public' en SELECT pg_catalog.set_config('search_path', 'public', false);
  2. pg_dump -x -O --inserts -t public.fuente --section=data toto5 -f app/developer_docs/fuente.sql
  3. php artisan make:migration create_fuente_table
  4. php artisan make:seeder SqlFuenteSeeder
  5. vi database/migrations/2021_09_03_221034_create_fuente_table.php
    y copiar de otro migrations create_table cambiando nombre de tabla
  6. vi database/seeds/SqlFuenteSeeder.php
    y copiar de otro seeder cambiando nombre de tabla
  7. vi database/seeds/DatabaseSeeder.php
    y agregar eel seeder en el .run()

from segmenter.

hernan-alperin avatar hernan-alperin commented on August 10, 2024
  1. pg_dump -x -O -t public.radio_entidad --section=pre-data toto5 -f app/developer_docs/radio_entidad.up.sql
    vi app/developer_docs/radio_entidad.up.sql
    y
    agregar 'public' en SELECT pg_catalog.set_config('search_path', 'public', false);
  2. pg_dump -x -O --inserts -t public.radio_entidad --section=data toto5 -f app/developer_docs/radio_entidad.sql
  3. php artisan make:migration create_radio_entidad_relation
  4. vi database/migrations/2021_10_13_231022_create_radio_entidad_relation.php y copiar de otro migrations create_table cambiando nombre de tabla
  5. php artisan make:seeder SqlRadioEntidadSeeder
  6. vi database/seeds/SqlRadioEntidadSeeder.php y copiar de otro seeder cambiando nombre de tabla
  7. vi database/seeds/DatabaseSeeder.php y agregar eel seeder en el .run()

from segmenter.

hernan-alperin avatar hernan-alperin commented on August 10, 2024

operativos

  1. pg_dump -x -O -t public.operativo --section=pre-data toto5 -f app/developer_docs/operativo.up.sql

  2. vi app/developer_docs/operativo.up.sql
    y agregar 'public' en SELECT pg_catalog.set_config('search_path', 'public', false);

  3. pg_dump -x -O --inserts -t public.operativo --section=data toto5 -f app/developer_docs/operativo.sql

  4. php artisan make:migration create_operativo

  5. vi database/migrations/datetime_create_operativo.php
    y copiar de otro migrations create_table cambiando nombre de tabla

  6. php artisan make:seeder SqlOperativoSeeder

  7. vi database/seeds/SqlOperativoSeeder.php
    y copiar de otro seeder cambiando nombre de tabla

  8. vi database/seeds/DatabaseSeeder.php
    y agregar el seeder en el .run()

from segmenter.

Related Issues (2)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.