Magento 2.3 What are the profits of using db_schema.xml instead of using setup script?What is the best way to implement a setup/install script for Magento 1.7+Is it possible to add logs in a setup script?Is it necessary to addIndex() on Setup Script?Magento 2.3: One or more indexers are invalidMagento 2.3 admin not working after grunt setupWhat is use of reactJS in magento 2.3Setup Script throws Error : Call to undefined method Mage_Core_Model_Resource_Setup::addAttribute()Magento2: What is the difference between Magento 2.2 and 2.3?Magento 2.3 - Need detail about some newly introduced featureMagento 2.3 : Insert data into table using DeclarativeSchema

Why is it a bad idea to hire a hitman to eliminate most corrupt politicians?

90's TV series where a boy goes to another dimension through portal near power lines

Took a trip to a parallel universe, need help deciphering

Did Shadowfax go to Valinor?

Doing something right before you need it - expression for this?

Alternative to sending password over mail?

How to take photos in burst mode, without vibration?

Can a virus destroy the BIOS of a modern computer?

How can I tell someone that I want to be his or her friend?

A reference to a well-known characterization of scattered compact spaces

Could gravitational lensing be used to protect a spaceship from a laser?

Were any external disk drives stacked vertically?

In Romance of the Three Kingdoms why do people still use bamboo sticks when papers are already invented?

Where does SFDX store details about scratch orgs?

Anagram holiday

Do I have a twin with permutated remainders?

What's the point of deactivating Num Lock on login screens?

I Accidentally Deleted a Stock Terminal Theme

What exploit are these user agents trying to use?

If human space travel is limited by the G force vulnerability, is there a way to counter G forces?

Why is Collection not simply treated as Collection<?>

Is it possible to download Internet Explorer on my Mac running OS X El Capitan?

How can saying a song's name be a copyright violation?

prove that the matrix A is diagonalizable



Magento 2.3 What are the profits of using db_schema.xml instead of using setup script?


What is the best way to implement a setup/install script for Magento 1.7+Is it possible to add logs in a setup script?Is it necessary to addIndex() on Setup Script?Magento 2.3: One or more indexers are invalidMagento 2.3 admin not working after grunt setupWhat is use of reactJS in magento 2.3Setup Script throws Error : Call to undefined method Mage_Core_Model_Resource_Setup::addAttribute()Magento2: What is the difference between Magento 2.2 and 2.3?Magento 2.3 - Need detail about some newly introduced featureMagento 2.3 : Insert data into table using DeclarativeSchema






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















Magento 2.3 used db_schema.xml instead of setup script. What are the benefits of using db_schema.xml over setup script?










share|improve this question







New contributor




Jazz is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.


























    1















    Magento 2.3 used db_schema.xml instead of setup script. What are the benefits of using db_schema.xml over setup script?










    share|improve this question







    New contributor




    Jazz is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.






















      1












      1








      1








      Magento 2.3 used db_schema.xml instead of setup script. What are the benefits of using db_schema.xml over setup script?










      share|improve this question







      New contributor




      Jazz is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.












      Magento 2.3 used db_schema.xml instead of setup script. What are the benefits of using db_schema.xml over setup script?







      magento2.3 setup-script magento2.3.1 declarative-schema






      share|improve this question







      New contributor




      Jazz is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question







      New contributor




      Jazz is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question






      New contributor




      Jazz is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 6 hours ago









      JazzJazz

      462




      462




      New contributor




      Jazz is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      Jazz is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      Jazz is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.




















          2 Answers
          2






          active

          oldest

          votes


















          2














          According to devdocs:




          When a customer upgrades Magento to a version several releases ahead
          of the installed version, the upgrade script for each intermediate
          release still executes. Developers were required to fully understand
          what each install and upgrade script contained. They needed to account
          for this complexity when creating extensions.



          The new declarative schema approach allows developers to declare the
          final desired state of the database and has the system adjust to it
          automatically, without performing redundant operations. Developers are
          no longer forced to write scripts for each new version. In addition,
          this approach allows data be deleted when a module is uninstalled.




          More detail






          share|improve this answer






























            0














            Please Can you read the developer doc of magento. there is a very peaceful description about db_schema.xml



            for more information please read this one db_schema






            share|improve this answer























              Your Answer








              StackExchange.ready(function()
              var channelOptions =
              tags: "".split(" "),
              id: "479"
              ;
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function()
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled)
              StackExchange.using("snippets", function()
              createEditor();
              );

              else
              createEditor();

              );

              function createEditor()
              StackExchange.prepareEditor(
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: false,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: null,
              bindNavPrevention: true,
              postfix: "",
              imageUploader:
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              ,
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              );



              );






              Jazz is a new contributor. Be nice, and check out our Code of Conduct.









              draft saved

              draft discarded


















              StackExchange.ready(
              function ()
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f268828%2fmagento-2-3-what-are-the-profits-of-using-db-schema-xml-instead-of-using-setup-s%23new-answer', 'question_page');

              );

              Post as a guest















              Required, but never shown

























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              2














              According to devdocs:




              When a customer upgrades Magento to a version several releases ahead
              of the installed version, the upgrade script for each intermediate
              release still executes. Developers were required to fully understand
              what each install and upgrade script contained. They needed to account
              for this complexity when creating extensions.



              The new declarative schema approach allows developers to declare the
              final desired state of the database and has the system adjust to it
              automatically, without performing redundant operations. Developers are
              no longer forced to write scripts for each new version. In addition,
              this approach allows data be deleted when a module is uninstalled.




              More detail






              share|improve this answer



























                2














                According to devdocs:




                When a customer upgrades Magento to a version several releases ahead
                of the installed version, the upgrade script for each intermediate
                release still executes. Developers were required to fully understand
                what each install and upgrade script contained. They needed to account
                for this complexity when creating extensions.



                The new declarative schema approach allows developers to declare the
                final desired state of the database and has the system adjust to it
                automatically, without performing redundant operations. Developers are
                no longer forced to write scripts for each new version. In addition,
                this approach allows data be deleted when a module is uninstalled.




                More detail






                share|improve this answer

























                  2












                  2








                  2







                  According to devdocs:




                  When a customer upgrades Magento to a version several releases ahead
                  of the installed version, the upgrade script for each intermediate
                  release still executes. Developers were required to fully understand
                  what each install and upgrade script contained. They needed to account
                  for this complexity when creating extensions.



                  The new declarative schema approach allows developers to declare the
                  final desired state of the database and has the system adjust to it
                  automatically, without performing redundant operations. Developers are
                  no longer forced to write scripts for each new version. In addition,
                  this approach allows data be deleted when a module is uninstalled.




                  More detail






                  share|improve this answer













                  According to devdocs:




                  When a customer upgrades Magento to a version several releases ahead
                  of the installed version, the upgrade script for each intermediate
                  release still executes. Developers were required to fully understand
                  what each install and upgrade script contained. They needed to account
                  for this complexity when creating extensions.



                  The new declarative schema approach allows developers to declare the
                  final desired state of the database and has the system adjust to it
                  automatically, without performing redundant operations. Developers are
                  no longer forced to write scripts for each new version. In addition,
                  this approach allows data be deleted when a module is uninstalled.




                  More detail







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered 6 hours ago









                  Sohel RanaSohel Rana

                  23.1k34461




                  23.1k34461























                      0














                      Please Can you read the developer doc of magento. there is a very peaceful description about db_schema.xml



                      for more information please read this one db_schema






                      share|improve this answer



























                        0














                        Please Can you read the developer doc of magento. there is a very peaceful description about db_schema.xml



                        for more information please read this one db_schema






                        share|improve this answer

























                          0












                          0








                          0







                          Please Can you read the developer doc of magento. there is a very peaceful description about db_schema.xml



                          for more information please read this one db_schema






                          share|improve this answer













                          Please Can you read the developer doc of magento. there is a very peaceful description about db_schema.xml



                          for more information please read this one db_schema







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered 6 hours ago









                          Magento_BhurioMagento_Bhurio

                          374110




                          374110




















                              Jazz is a new contributor. Be nice, and check out our Code of Conduct.









                              draft saved

                              draft discarded


















                              Jazz is a new contributor. Be nice, and check out our Code of Conduct.












                              Jazz is a new contributor. Be nice, and check out our Code of Conduct.











                              Jazz is a new contributor. Be nice, and check out our Code of Conduct.














                              Thanks for contributing an answer to Magento Stack Exchange!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid


                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.

                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function ()
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f268828%2fmagento-2-3-what-are-the-profits-of-using-db-schema-xml-instead-of-using-setup-s%23new-answer', 'question_page');

                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              Jet Time Laivasto | Lähteet | Aiheesta muualla | NavigointivalikkoJet Time - The CompanyThe CompanyManagementJet Time aloittaa lauantaina Suomi-rekisterissä olevalla Boeing 737 -koneellaJettime Finland Fleet Details and HistoryJettime Fleet Details and HistoryRegional Jet OÜ takes over ATR production for SASJet Time Returns To Its Core BusinessYhtiön kotisivutlaajentamalla

                              Olympian arkeologinen museo Sisällysluettelo Historia ja rakennus | Kokoelmat | Lähteet | Aiheesta muualla | Navigointivalikko37°38′36″N, 21°37′46″EInfobox OKArchaeological Museum of Olympia: HistoryArchaeological Museum of Olympia: DescriptionΜουσείο Ιστορίας των Ολυμπιακών Αγώνων της Αρχαιότητας: ΙστορικόArchaeological Museum of Olympia

                              Äpy Sisällysluettelo Äpyt kautta historian | Esimerkkejä Äpy-huumorista | Katso myös | Kirjallisuutta | Aiheesta muualla | Navigointivalikkowww.äpy.fi