SQLite Insert or Replace using angularJS

I'm trying to implement a INSERT OR REPLACE SQL to update the values that come from my API, the problem is, every time that I register a new item in my API and reload the app, it is duplicating all the rows, it is inserting the whole data again, how can I prevent that to happen?

angular.forEach(item.faturamentos, function (fat) {

                        //debugger
                        db.transaction(
                            function (tx) {

                                tx.executeSql('INSERT OR REPLACE INTO faturamento_pedidos (valor_a_faturar, ' +
                                    'nota_fiscal, ' +
                                    '_criado,' +
                                    '_modificado , ' +
                                    '_status, ' +
                                    'id_rm, ' +
                                    'cod_id, ' +
                                    'id_rm_pedido, ' +
                                    'id_rm_empresa, ' +
                                    'data, ' +
                                    'informacoes_adicionais ) VALUES (?,?,?,?,?,?,?,?,?,?,?)',

                                    [
                                        fat.valor_a_faturar,
                                        fat.nota_fiscal,
                                        fat.criado,
                                        fat.modificado,
                                        fat.status,
                                        fat.id,
                                        fat.cod_id,
                                        fat.id_rm_pedido,
                                        fat.id_rm_empresa,
                                        fat.data,
                                        fat.informacoes_adicionais


                                    ]);
                            },
                            txErrorHandler,
                            function () {
                                log('Record inserted successfully');
                            }
                        );
                    });

TABLE:

            tx.executeSql("CREATE TABLE IF NOT EXISTS faturamento_pedidos (" +
            "faturamento_id Integer PRIMARY KEY AUTOINCREMENT, " +
            "_criado Text, " +
            "_modificado Text, " +
            "_status Text, " +
            "id_rm Integer, " +
            "id_rm_pedido Integer, " +
            "id_rm_empresa Integer, " +
            "cod_id Text, " +
            "valor_a_faturar Text, " +
            "nota_fiscal Text, " +
            "data Text, " +
            "informacoes_adicionais Text," +
            "CONSTRAINT unique_id_rm UNIQUE  ('id_rm'))");

            tx.executeSql('CREATE INDEX IF NOT EXISTS "faturamento_pedidos.index_faturamento_id" ON "faturamento_pedidos"("faturamento_id");');