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
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·123 readsentity framework
Nikhil AkkiPronikhilakki.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·860 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
Joseph Chimeziejc-coder.hashnode.dev·Aug 16, 2023An Easy Guide to Managing Database Migrations with NestJS and PostgreSQLEver felt overwhelmed by the thought of database changes as your app evolves? Fear not! Migrations are here to rescue you from the complexity, turning daunting into the doable. Think of them as your app's organizational magic – like tidying up your a...Discuss·3 likes·121 readsJavaScript
Jairaj Sahgaljairajremote.hashnode.dev·Aug 11, 2023Navigating the Database Evolution: A Beginner's Guide to Migrations in DjangoWelcome to the world of Django – where your web application's journey often involves a dance with the database. In this guide, we're unraveling the mystery behind Django's migrations and uncovering why they're your best friends when it comes to manag...DiscussDjango
Yan Pitanguiyanpitangui.hashnode.dev·Jun 15, 2023[EN] Detecting if the application is running to create migrationsChallenges with Scoped Dependencies in DbContext In Entity Framework Core, DbContext is often used to interact with the database. However, in complex scenarios like multi-tenant applications, you might need to inject scoped services such as TenantPro...Discussdotnet