我正在尝试使用capistrano命令创建一个数据库.我只找到一个命令,如deploy:migrate.有没有db:create的命令?
解决方法
Capistrano不提供任何
recipes来创建数据库.如
capistrano googlegroups thread所述:
it’s not something that is generic enough to warrant inclusion in the
core,and it really falls under the domain of “administration” which
we try to avoid
其他人通过从脚本直接调用数据库创建命令,通过capistrano自动创建数据库.
上述同样的线程提供了一个link to a capistrano script,它通过从capistrano运行MysqL命令来创建一个MysqL数据库.