GeistHaus
log in · sign up

GitHub - golang-migrate/migrate: Database migrations. CLI and Golang library.

github.com

Database migrations. CLI and Golang library. Contribute to golang-migrate/migrate development by creating an account on GitHub.

9 pages link to this URL
AWS Lambda Database Migrations

Software development and deployment is very much like an adventure game. Where you're faced with puzzles that might take you a day to solve, by picking up …

0 inbound links article en AGILE1AMQP1ANGULAR1ARCHITECTURE1AUTHENTICATION1AVRO1AWS2BACKBONE1C++1CLUSTERING1COFFESCRIPT1COMPARISON1CONSULTING1DEVELOPMENT1DEVOPS1DJANGO4DNS1DOCKER2DRAFT1ECHO1EMAIL1FACEBOOK1FIZZBUZZ3FRAMEWORKS1GENTOO1GOLANG9GRAPHQL2HIVE1HR1IDEAS1IMPALA1JAVA2JAVASCRIPT2LANGUAGE1LANGUAGES2LIBEV1NLP2OAUTH1OPENID2ORM1PERFORMANCE4PERFORMANCE-REVIEWS2PERL1PHP4PROGRAMMING1PROJECT-MANAGEMENT3PYTHON17REACT4REDUX1RUBY2S31SCRUM1SMTP1SPAM1SPARK1SQLGREY1STARTUPS1THRIFT2TORNADO2TRAVEL1TWISTED2TWITTER1ZEND2ZENDESK1
How I use Postgres with Go

Most developers will have to interact with SQL at some point in their career, and often nowadays that means working with Postgres. I’ve been using Postgres with Go for a few years now and have found a couple of libraries that work really well together to make the Go Postgres experience productive, safe and fun. TL:DR; I have created an example repo that puts all of the below into practice: github.

0 inbound links article en post gopostgresdocker
Devlog 1 - Foundations

This is the first in a series of posts about the stria side project I am working on.

0 inbound links article en Posts striadevlog
SQL string constant gotcha

I was working on a project that uses PostgreSQL and as part of my task I needed to write a migration. The migrations are written as plain SQL and applied using the migrate library. The migration itself was not that complex, some rows needed to be updated where a column matched one of the values in a list. In my rush, I’ve opted for a rather simple query that went something like this:

0 inbound links article en posts ProgrammingSQL