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 migrations. In version

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 lprefonta...@softaddicts.ca 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) )

Re: [ANN] Drift DB

2011-11-28 Thread Luc Prefontaine
Hi Matt, working with this stuff... pretty sure I can make rake obsolete pretty soon :) However I am struggling with the auto increment column attribute... (create-table :meta-entities (integer :id {:not-null true :auto-increment true :primary-key true}) (string :name {:not-null true

[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