Carlos OspinaforA Drupal Coupleadrupalcouple.hashnode.dev·Nov 16, 2024Drupal 7 EOL: Choosing the Right Path for Your SiteImage Carlos Ospina 16 November, 2024 Drupal 7 EOL: Choosing the Right Path for Your Site Leave this field blank Executive Summary With Drupal 7's end-of-life approaching in January 2025, organizations face critical migration decisions. Drawi...DiscussDrupal
M Inamdarmi-devops.hashnode.dev·Oct 15, 2024Simplifying Your TransitionIntroduction Version control is a crucial component of software development. Over the years, many teams have transitioned from Subversion (SVN) to Git due to its distributed nature, robust branching capabilities, and widespread adoption. If your orga...Discuss·27 readsgerrite
Manvendra Singhnoder254.hashnode.dev·Sep 20, 2024How to Set Up a Database and Display Data on the Frontend Using Laravel and Vue.jsIntroduction Setting up a full-stack web application can seem challenging, but with the right combination of technologies, the process becomes much more manageable. One of the most popular stacks today is Laravel for the backend and Vue.js for the fr...DiscussLaravel
Nicholas Diamondnicholasdiamond.hashnode.dev·Jul 12, 2024CI/CD Pipelines for Database Changes: Safe Schema Migrations and RollbacksModern applications are highly data-dependent, so managing database schema changes safely is critical. Unlike code changes, database updates can be challenging to roll back, especially in live production environments where downtime isn’t an option. S...Discuss·877 readsci-cd
Thalles Lossurdosocraticprogrammer.hashnode.dev·Jul 5, 2024How to run migrations inside DockerfileDuring modern software development, it is necessary to version, maintain previous versions, and control possible risks that may occur during this process. In the context of data persistence, databases contain migrations, which is a tool aims to manag...Discussmigrations
Paul Bryantpaulbryant337.hashnode.dev·Jul 2, 2024Key Software Platforms for Conversion to QuickBooksIn today's dynamic business environment, efficiency and precision in financial management are paramount. Many businesses are transitioning their financial data from various software platforms to QuickBooks to leverage its robust accounting capabiliti...Discussconvert
Asis Sharmaasis-sharma.hashnode.dev·May 3, 2024Level Up Your Database Game: Mastering Laravel MigrationsAlright developers, listen up! Ever feel like your database schema is a tangled web of mystery, a ticking time bomb waiting to explode in your face? Yeah, we've all been there. Manually adding columns, wrestling with schema changes – it's enough to m...DiscussLaravel
Konrad Przepiórzyńskiquailoop.hashnode.dev·Mar 26, 2024Merging Incremental Migrations in Entity FrameworkThe story Have you ever encountered a challenge that looked something like this? You’re assigned to a task force with the mission of implementing a new, exciting feature in your legacy application. You’re grateful to your fellow developers for transi...Discuss·124 readsentity framework
Nikhil Akkinikhilakki.in·Feb 3, 2024How to migrate SQL db data in Django?I recently had a task at hand to migrate from a on VM PostgreSQL DB instance to Azure PostgreSQL Flexible server (a cloud native managed PostgreSQL server). We use docker compose for service orchestration for local development due to its easy of use ...Discuss·985 readsPython Developmentazure-postgresql
Fullchee Zhangfullchee.hashnode.dev·Oct 2, 2023Use strings, not constants in Django migrations# migrations/0001_my_migration.py from my_file import MY_CONSTANT MyModel.objects.get_or_create(name=MY_CONSTANT) # migrations/0001_my_migration.py MyModel.objects.get_or_create(name="my-constant") Why value of LOCALIZATION.BUNDLE__SYNC could cha...DiscussTIL