NAME
dbicdeploy - deploy a DBIx::Class schema to a database
SYNOPSIS
dbicdeploy schema DSN
Example
dbicdeploy -Ilib MyApp::Schema DBI:SQLite:root/database
- -I
-
libis a directory to add to the search path for the schema. You can have 0 or more of these, just likeperl. - Schema
-
MyApp::Schemais the DBIx::Class::Schema subclass that you want to deploy. - DSN
-
DBI:SQLite:root/databaseis the DBI DSN that you want to connect to. I use SQLite here, but you can usemysql,Pg, or whatever.