From: Mike Bayer Date: Mon, 17 May 2010 17:44:01 +0000 (-0400) Subject: this doesnt apply anymore X-Git-Tag: rel_0_1_0~89 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9d748e5a5bc110f2e97405b97ffecebba1c01898;p=thirdparty%2Fsqlalchemy%2Falembic.git this doesnt apply anymore --- diff --git a/sample_notes.txt b/sample_notes.txt deleted file mode 100644 index e6b87124..00000000 --- a/sample_notes.txt +++ /dev/null @@ -1,48 +0,0 @@ -# temporary sample notes - - -# commands: - -alembic list-templates - Available templates: - - generic - plain migration template - pylons - uses Pylons .ini file and environment - multidb - illustrates multi-database usage - -alembic init ./scripts - --template argument is required. - - Available templates: - - generic - plain migration template - pylons - uses Pylons .ini file and environment - multidb - illustrates multi-database usage - -alembic init --template=generic ./scripts - using template 'generic'.... - creating script dir './scripts'.... - copying 'env.py'... - copying 'script.py.mako'... - generating 'alembic.ini'... - done ! edit 'sqlalchemy.url' in alembic.ini - -alembic revision -m "do something else" -alembic upgrade -alembic revert -r jQq57 -alembic history -alembic splice jQq57 Pz953 -alembic branches - -# with pylons - use paster commands ? - -scripts directory looks like: - -./scripts/ - env.py - script.py.mako - lfh56_do_this.py - jQq57_do_that.py - Pzz19_do_something_else.py - -