Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
什么是 AR 等价物bundle exec rake db:create?
bundle exec rake db:create
我试过
sequel -m path/to/migration postgres://uname:password@host/dbName
这是我在文档中可以找到的唯一命令(到目前为止)。显然,我正在寻找一些东西来创建一个不迁移的数据库,这很好。
Sequel 没有创建数据库的命令。工作方式rake db:create是调用数据库附带的程序(假设命令在 中$PATH)。与 PostgreSQL等效的 Sequelrake db:create将createdb手动运行。
rake db:create
$PATH
createdb