NOTICES for sequence after running migration in rails on postgresql Application
Rails (ActiveRecord to be more precise) is adding an id column to your table and making this column the primary key. For PostgreSQL, this column will have type serial. A serial column is essentially a four byte integer combined with a sequence to automatically provide auto-incrementing values. The first notice: NOTICE: CREATE TABLE will create … Read more