We are having MS SQL 2008 as database with Hibernate.
Now we are planning to move on to Postgres.
I know that Postgres does not have auto increment feature for primary key column.
I heard about SERIAL data type or Sequences for each table and then using nextval with primary key.
MS SQL Database is large enough containing around 150 tables.
So, I want opinions and want to know that Should We go by create sequences or SERIAL will work.
Which one could be better option ?