SlideShare a Scribd company logo
Database Versioning
In Golang
- Missing changes.
- Code’s version and database’s version.
- Missing setting’s versioning.
Problem
What way we have
Communication
Beego migration
Beego migration
Beego migration
Beego migration
- Miss version
- Can’t delete or edit
- Miss default setting
- Depend on beego framework
Good database versioning tool
mattes/migrate
https://github.com/mattes/migrate
- Versioning database.
- Support default setting records.
- Support rollback and change version.
- Independence tool.
mattes/migrate
Supported databases:
- Postgresql
- Mysql
- Sqlite
- Cassandra
Allows custom to add unsupported
databases.
step 1: Create simple project:
go get github.com/ledongthuc/simple-golang-app
cd $GOPATH/src/github.com/ledongthuc/simple-golang-app/
step 1: Create simple project:
step 2: Add mattes/migrate library
go get github.com/mattes/migrate
https://gist.github.com/ledongthuc/f452eb0d6dfe97d0b4de
step 2: Add mattes/migrate library
Add folder sql
Using with command
line
1 - up all migration
2 - down all migration
3 - Redo an action
4 - Reset database
5 - Go to specific version

More Related Content

PPTX
Wet Processing Engineering- I. Presentation1.pptx
PDF
Personal data and blockchain: Opportunities and Challenges - Michele Nati - L...
PPTX
Structured approach to blockchain and consensus techniques
PDF
Blockchain BTSym '16
PDF
Magister Advisors - Blockchain & Bitcoin in 2016 - A Survey Of Global Leaders
PPTX
Bitcoin and Blockchain Technology Explained: Not just Cryptocurrencies, Econo...
PPTX
Blockchain Consensus Protocols
ODP
CBGTBT - Part 1 - Workshop introduction & primer
Wet Processing Engineering- I. Presentation1.pptx
Personal data and blockchain: Opportunities and Challenges - Michele Nati - L...
Structured approach to blockchain and consensus techniques
Blockchain BTSym '16
Magister Advisors - Blockchain & Bitcoin in 2016 - A Survey Of Global Leaders
Bitcoin and Blockchain Technology Explained: Not just Cryptocurrencies, Econo...
Blockchain Consensus Protocols
CBGTBT - Part 1 - Workshop introduction & primer

Similar to Database versioning in golang (20)

PDF
Bedjango talk about Git & GitHub
PPTX
Introduction to git and Github
PPTX
Introduction to git & github
PDF
The journey to GitOps
PPTX
EdTechJoker Spring 2020 - Lecture 2 - Git
ODP
GIT from n00b
PDF
Probo.ci Drupal 4 Gov Devops 1/2 day Presentation
PDF
Magento Fireside Chat: "Wiring Mageno Projects"
PDF
The usage and dependency resolving mechanism of go module
PDF
When it all GOes right
PDF
.Git for WordPress Developers
PDF
Take the next step with git
PPTX
Magento 1.x to Magento 2 Code Migration Tools
PDF
Git Recipes 1st Edition Wodzimierz Gajda Auth
PDF
You're doing it wrong! Git it right!
PDF
5 年後還是新手 - WordPress Plugin 開發大冒險 - GOTY
PPTX
Database Migrations with Gradle and Liquibase
PDF
Git - An Introduction
PDF
Git for developers
PDF
Git workshop
Bedjango talk about Git & GitHub
Introduction to git and Github
Introduction to git & github
The journey to GitOps
EdTechJoker Spring 2020 - Lecture 2 - Git
GIT from n00b
Probo.ci Drupal 4 Gov Devops 1/2 day Presentation
Magento Fireside Chat: "Wiring Mageno Projects"
The usage and dependency resolving mechanism of go module
When it all GOes right
.Git for WordPress Developers
Take the next step with git
Magento 1.x to Magento 2 Code Migration Tools
Git Recipes 1st Edition Wodzimierz Gajda Auth
You're doing it wrong! Git it right!
5 年後還是新手 - WordPress Plugin 開發大冒險 - GOTY
Database Migrations with Gradle and Liquibase
Git - An Introduction
Git for developers
Git workshop
Ad

Recently uploaded (20)

PDF
Softaken Excel to vCard Converter Software.pdf
PPTX
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
PDF
Designing Intelligence for the Shop Floor.pdf
PPT
Introduction Database Management System for Course Database
PPTX
Embracing Complexity in Serverless! GOTO Serverless Bengaluru
PDF
Upgrade and Innovation Strategies for SAP ERP Customers
PDF
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
PDF
How to Choose the Right IT Partner for Your Business in Malaysia
PPTX
assetexplorer- product-overview - presentation
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
PDF
Understanding Forklifts - TECH EHS Solution
PPTX
CHAPTER 2 - PM Management and IT Context
PDF
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
PPTX
Transform Your Business with a Software ERP System
PDF
Design an Analysis of Algorithms II-SECS-1021-03
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PDF
Adobe Illustrator 28.6 Crack My Vision of Vector Design
PPTX
Reimagine Home Health with the Power of Agentic AI​
PDF
Wondershare Filmora 15 Crack With Activation Key [2025
PDF
System and Network Administraation Chapter 3
Softaken Excel to vCard Converter Software.pdf
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
Designing Intelligence for the Shop Floor.pdf
Introduction Database Management System for Course Database
Embracing Complexity in Serverless! GOTO Serverless Bengaluru
Upgrade and Innovation Strategies for SAP ERP Customers
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
How to Choose the Right IT Partner for Your Business in Malaysia
assetexplorer- product-overview - presentation
Which alternative to Crystal Reports is best for small or large businesses.pdf
Understanding Forklifts - TECH EHS Solution
CHAPTER 2 - PM Management and IT Context
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
Transform Your Business with a Software ERP System
Design an Analysis of Algorithms II-SECS-1021-03
Internet Downloader Manager (IDM) Crack 6.42 Build 41
Adobe Illustrator 28.6 Crack My Vision of Vector Design
Reimagine Home Health with the Power of Agentic AI​
Wondershare Filmora 15 Crack With Activation Key [2025
System and Network Administraation Chapter 3
Ad

Database versioning in golang