[postgres] ActiveRecordでtruncateしてIDも1から採番するようにする


参考

ActiveRecord::Base.connection.execute("TRUNCATE TABLE users")
ActiveRecord::Base.connection.execute("ALTER SEQUENCE users_id_seq RESTART WITH 1")