使用 PostgreSQL 开发和测试数据库(以及生产)。当我使用rake db:test:prepare
我的PostgreSQL theapp_test
数据库时,我会收到每个表的这些消息:
NOTICE: CREATE TABLE will create implicit sequence "events_id_seq" for serial column "events.id"
NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "events_pkey" for table "events"
NOTICE: CREATE TABLE will create implicit sequence "users_id_seq" for serial column "users.id"
NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "users_pkey" for table "users"
...
我没有收到这些通知rake db:migrate
on theapp_development
。而且我还没有在生产中注意到它们。这是什么意思,我应该努力摆脱它们吗?
仅供参考 - 过去当我使用 MySQL(或 SQLite3)进行测试时,这并没有发生......