Possible duplicate:
NOTIFICATIONS for the sequence after starting the migration in rails in the postgresql application
Using PostgreSQL to develop and test databases (as well as for production). When I rake db:test:prepare my PostgreSQL database theapp_test , I get these messages for each table:
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" ...
I do not receive these notifications with rake db:migrate on theapp_development . And I did not notice them in production. What does this mean and should I work to get rid of them?
FYI - This did not happen in the past when I used MySQL (or SQLite3, for that matter) for testing ...
source share