https://github.com/shaikrasheed99/database-migrations-flyway
Database Migration Scripts using Flyway.
https://github.com/shaikrasheed99/database-migrations-flyway
database database-migrations migration mysql postgresql spring-boot spring-data-jpa springframework
Last synced: 7 months ago
JSON representation
Database Migration Scripts using Flyway.
- Host: GitHub
- URL: https://github.com/shaikrasheed99/database-migrations-flyway
- Owner: shaikrasheed99
- Created: 2022-06-21T07:14:48.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-06-21T07:15:15.000Z (over 3 years ago)
- Last Synced: 2025-01-13T19:39:12.198Z (9 months ago)
- Topics: database, database-migrations, migration, mysql, postgresql, spring-boot, spring-data-jpa, springframework
- Language: Java
- Homepage:
- Size: 63.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Database Migrations using Flyway
## Gradle based spring boot application to create database schema migrations using flyway migration tool and postgresql database
List of migrations:
V1.1 - Create table users(id, name, address).
V1.2 - Create table products(id, name, price).V1.3 - Alter tables change column ‘name’ field to ‘full_name’ in users table.
V1.4 - Alter tables add primary phone number column in users table.V1.5 - Create table carts(id, user_id).
V1.6 - Create table cart_items(id, cart_id, product_id, quantity).