Re: [ANN] Drift-db version 1.1.0 released

2012-07-07 Thread Matt
Forgot the link: https://github.com/macourtney/drift-db On Saturday, July 7, 2012 9:38:03 AM UTC-4, Matt wrote: > > Drift-db version 1.1.0 released > > Drift-db is a library and companion project to Drift which gives you a > standard interface for updating databases from mig

[ANN] Drift-db version 1.1.0 released

2012-07-07 Thread Matt
Drift-db version 1.1.0 released Drift-db is a library and companion project to Drift which gives you a standard interface for updating databases from migrations. In version 1.1.0: 1. Added support for Postgresql 2. Added offset and order-by as parameters to sql-find 3. Added an update-column

Re: Drift DB

2011-11-30 Thread Luc Prefontaine
  id          int(11) NOT NULL, > >     name        varchar(255) NOT NULL, > >     created_at  datetime NULL, > >     updated_at  datetime NULL, > >     PRIMARY KEY(id) > > ) > > ENGINE = InnoDB > > AUTO_INCREMENT = 0 > > > > According to the Aqu

Re: Drift DB

2011-11-30 Thread Matt
ENT = 0 > > According to the AquaStudio tool I use to reverse engineer the DDL. > > The trace message: > > DEBUG                   Thread-51 2028 234732,063 drift-db-mysql.flavor ] > Create table: :meta-entities with specs: ({:not-null true, :primary-key true, > :spec

Re: [ANN] Drift DB

2011-11-30 Thread Luc Prefontaine
Ahem, considering that I regularly alternate between MySql, Postgres and Oracle databases, I like the idea of just calling a pop menu like "Create table (full)" and let Aqua spit out the DDL in an adjacent window while having a database explorer pane on the left :) Memory becomes a pricey real

Re: [ANN] Drift DB

2011-11-29 Thread Michael Wood
Hi On 29 November 2011 07:03, Luc Prefontaine wrote: [...] > It yields in MySql: > > CREATE TABLE meta_entities  ( >    id          int(11) NOT NULL, >    name        varchar(255) NOT NULL, >    created_at  datetime NULL, >    updated_at  datetime NULL, >    PRIMARY KEY(id) > ) > ENGINE = InnoDB

Re: Drift DB

2011-11-29 Thread Matt
RY KEY(id) > ) > ENGINE = InnoDB > AUTO_INCREMENT = 0 > > According to the AquaStudio tool I use to reverse engineer the DDL. > > The trace message: > > DEBUG                   Thread-51 2028 234732,063 drift-db-mysql.flavor ] > Create table: :meta-entities with specs

Re: [ANN] Drift DB

2011-11-28 Thread Luc Prefontaine
, updated_at datetime NULL, PRIMARY KEY(id) ) ENGINE = InnoDB AUTO_INCREMENT = 0 According to the AquaStudio tool I use to reverse engineer the DDL. The trace message: DEBUG Thread-51 2028 234732,063 drift-db-mysql.flavor ] Create table: :meta-entities with specs

[ANN] Drift DB

2011-11-24 Thread Matt
Drift DB is a clojure database library focused on migration functions. With Drift DB you can create tables, drop tables, add columns to tables, remove columns from tables, query tables, and, though it is not the focus of Drift DB, you can insert, update, delete and select rows from tables. The