aboutsummaryrefslogtreecommitdiff
path: root/databases/p5-App-Sqitch
Commit message (Collapse)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Fix every instance of RUN_DEPENDS:=${BUILD_DEPENDS} in p5 ports, exceptDag-Erling Smørgrav2018-10-061-2/+2
| | | | | | | | | | for where it resulted in a change in output from build-depends-list or run-depends-list. Approved by: portmgr (adamw) Notes: svn path=/head/; revision=481365
* Update WWWSunpoet Po-Chuan Hsieh2018-05-271-1/+1
| | | | | | | | | | search.cpan.org is shutting down. It will redirect to metacpan.org after June 25, 2018. With hat: perl Notes: svn path=/head/; revision=470993
* Bump PORTREVISION for ports affected by the fix the last commit.Mathieu Arnold2017-01-311-0/+1
| | | | | | | | Done with: Tools/scripts/bump-revision.sh Sponsored by: Absolight Notes: svn path=/head/; revision=432932
* New port: databases/p5-App-SqitchKurt Jaeger2016-04-104-0/+332
Sqitch is a database change management application. What makes it different from your typical migration-style approaches? A few things: ## No opinions Sqitch is not integrated with any framework, ORM, or platform. Rather, it is a standalone change management system with no opinions about your database engine, application framework, or development environment. ## Native scripting Changes are implemented as scripts native to your selected database engine. Writing a PostgreSQL application? Write SQL scripts for psql. Writing a MySQL-backed app? Write SQL scripts for mysql. ## Dependency resolution Database changes may declare dependencies on other changes -- even on changes from other Sqitch projects. This ensures proper order of execution, even when you've committed changes to your VCS out-of-order. ## No numbering Change deployment is managed by maintaining a plan file. As such, there is no need to number your changes, although you can if you want. Sqitch doesn't much care how you name your changes. ## Iterative development Up until you tag and release your application, you can modify your change deployment scripts as often as you like. They're not locked in just because they've been committed to your VCS. This allows you to take an iterative approach to developing your database schema. Or, better, you can do test-driven database development. WWW: http://search.cpan.org/dist/App-Sqitch/ PR: 205943 Submitted by: Henrik Hodne <henrik@hodne.io> Notes: svn path=/head/; revision=412912