0.0
No commit activity in last 3 years
No release in over 3 years
I use it to keep track of various mini-apps within a larger app.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.2.0
~> 1.5
>= 1.4.1
~> 0.16
~> 0.9
~> 4.13
 Project Readme

duck_duck_duck

You won't find this useful.

However, if you are still curious:

  • If you like to break up apps into smaller apps, and you want them to use the same db, but different tables, duck_duck_duck lets you migrate those mini-apps to the same db.

Previously...

Originally, this was a node module. The node module is no longer maintained. It is now a Ruby gem.

Commands

  cd /my/model/dir
  duck_duck_duck   up       MODEL_NAME
  duck_duck_duck   down     MODEL_NAME
  duck_duck_duck   create   MODEL_NAME  postfix

Sample .sql file:

  SELECT 1;
  -- DOWN
  SELECT 2

  -- UP:
  -- colons ":' are optional
  SELECT 3;

  -- DOWN:
  SELECT 4;