factor out filesystem interactions
authorArthur Axel 'fREW' Schmidt <frioux@gmail.com>
Tue, 12 Apr 2011 01:51:11 +0000 (20:51 -0500)
committerArthur Axel 'fREW' Schmidt <frioux@gmail.com>
Tue, 12 Apr 2011 03:10:43 +0000 (22:10 -0500)
commit8a3edcedddb89028adcd9942b04013967c071900
tree8adc701b4bc064deed2bd654805c6c0d8c1bdc5f
parent25c3bec32fc9c632b30dd8f90f109de1dd1c20d4
factor out filesystem interactions
36 files changed:
lib/DBIx/Class/DeploymentHandler/DeployMethod/SQL/Translator.pm
lib/DBIx/Class/DeploymentHandler/Filesystem.pm [new file with mode: 0644]
t/filesystem.t [new file with mode: 0644]
t/filesystem/MySQL/deploy/1/001-auto.sql [new file with mode: 0644]
t/filesystem/MySQL/deploy/2/001-auto.sql [new file with mode: 0644]
t/filesystem/MySQL/deploy/3/001-auto.sql [new file with mode: 0644]
t/filesystem/MySQL/downgrade/2-1/001-auto.sql [new file with mode: 0644]
t/filesystem/MySQL/downgrade/3-2/001-auto.sql [new file with mode: 0644]
t/filesystem/MySQL/initialize/1/001-create-database.pl [new file with mode: 0644]
t/filesystem/MySQL/initialize/1/002-create-users.pl [new file with mode: 0644]
t/filesystem/MySQL/initialize/2/001-create-database.pl [new file with mode: 0644]
t/filesystem/MySQL/initialize/2/002-create-users.pl [new file with mode: 0644]
t/filesystem/MySQL/initialize/3/001-create-database.pl [new file with mode: 0644]
t/filesystem/MySQL/initialize/3/002-create-users.pl [new file with mode: 0644]
t/filesystem/MySQL/upgrade/1-2/001-auto.sql [new file with mode: 0644]
t/filesystem/MySQL/upgrade/2-3/001-auto.sql [new file with mode: 0644]
t/filesystem/SQLite/deploy/1/001-auto.sql [new file with mode: 0644]
t/filesystem/SQLite/deploy/2/001-auto.sql [new file with mode: 0644]
t/filesystem/SQLite/deploy/3/001-auto.sql [new file with mode: 0644]
t/filesystem/SQLite/downgrade/2-1/001-auto.sql [new file with mode: 0644]
t/filesystem/SQLite/downgrade/3-2/001-auto.sql [new file with mode: 0644]
t/filesystem/SQLite/initialize/1/001-create-database.pl [new file with mode: 0644]
t/filesystem/SQLite/initialize/1/002-create-users.pl [new file with mode: 0644]
t/filesystem/SQLite/initialize/2/001-create-database.pl [new file with mode: 0644]
t/filesystem/SQLite/initialize/2/002-create-users.pl [new file with mode: 0644]
t/filesystem/SQLite/initialize/3/001-create-database.pl [new file with mode: 0644]
t/filesystem/SQLite/initialize/3/002-create-users.pl [new file with mode: 0644]
t/filesystem/SQLite/upgrade/1-2/001-auto.sql [new file with mode: 0644]
t/filesystem/SQLite/upgrade/2-3/001-auto.sql [new file with mode: 0644]
t/filesystem/_preprocess_schema/downgrade/2-1/001-rename-columns.pl [new file with mode: 0644]
t/filesystem/_preprocess_schema/downgrade/3-2/001-rename-columns.pl [new file with mode: 0644]
t/filesystem/_preprocess_schema/upgrade/1-2/001-rename-columns.pl [new file with mode: 0644]
t/filesystem/_preprocess_schema/upgrade/2-3/001-rename-columns.pl [new file with mode: 0644]
t/filesystem/_source/deploy/1/001-auto.yml [new file with mode: 0644]
t/filesystem/_source/deploy/2/001-auto.yml [new file with mode: 0644]
t/filesystem/_source/deploy/3/001-auto.yml [new file with mode: 0644]